diff --git a/changes/338.housekeeping b/changes/338.housekeeping new file mode 100644 index 00000000..de4660f8 --- /dev/null +++ b/changes/338.housekeeping @@ -0,0 +1 @@ +Fixed `invoke check-migrations`. diff --git a/tasks.py b/tasks.py index b964093b..5c5f20bd 100644 --- a/tasks.py +++ b/tasks.py @@ -591,7 +591,7 @@ def yamllint(context): @task def check_migrations(context): """Check for missing migrations.""" - command = "nautobot-server --config=nautobot/core/tests/nautobot_config.py makemigrations --dry-run --check" + command = "nautobot-server makemigrations --dry-run --check" run_command(context, command)