Skip to content

Commit

Permalink
add pylint_django migrations check (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnider2195 authored Oct 7, 2024
1 parent 8dcf01b commit 1bbccae
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/50.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added pylint django migrations checker to the `invoke pylint` command.
19 changes: 17 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,8 +709,23 @@ def hadolint(context):
@task
def pylint(context):
"""Run pylint code analysis."""
command = 'pylint --init-hook "import nautobot; nautobot.setup()" --rcfile pyproject.toml nautobot_dev_example'
run_command(context, command)
exit_code = 0

base_pylint_command = 'pylint --verbose --init-hook "import nautobot; nautobot.setup()" --rcfile pyproject.toml'
command = f"{base_pylint_command} nautobot_dev_example"
if not run_command(context, command, warn=True):
exit_code = 1

# run the pylint_django migrations checkers on the migrations directory
migrations_pylint_command = (
f"{base_pylint_command} --load-plugins=pylint_django.checkers.migrations"
" --disable=all --enable=new-db-field-with-default,missing-backwards-migration-callable"
" nautobot_dev_example.migrations"
)
if not run_command(context, migrations_pylint_command, warn=True):
exit_code = 1

raise Exit(code=exit_code)


@task(aliases=("a",))
Expand Down

0 comments on commit 1bbccae

Please sign in to comment.