From 0299281dff48b720951aaed6d9b3c3321d49b2fd Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 7 May 2024 17:15:44 +0200 Subject: [PATCH] fix: Test only for migrations within package --- tests/test_migrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_migrations.py b/tests/test_migrations.py index fe27c860..fe371b7b 100644 --- a/tests/test_migrations.py +++ b/tests/test_migrations.py @@ -18,7 +18,7 @@ def test_for_missing_migrations(self): } try: - call_command("makemigrations", **options) + call_command("makemigrations", "djangocms_snippet", **options) except SystemExit as e: status_code = str(e) else: