From 7980a2df473621a1eeea246b6b168badd75c1bb8 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Thu, 17 Oct 2024 16:34:34 -0500 Subject: [PATCH] Fix Upstream Testing By removing the config option for makemigrations. --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index d660e025..745f03d1 100644 --- a/tasks.py +++ b/tasks.py @@ -374,7 +374,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)