From 61c6c8974fa8d2c1587657169257014e06317590 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 25 May 2022 19:19:37 +0200 Subject: [PATCH] Fix test --- src/articles/tests/test_migrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/articles/tests/test_migrations.py b/src/articles/tests/test_migrations.py index cc646c8..7b31334 100644 --- a/src/articles/tests/test_migrations.py +++ b/src/articles/tests/test_migrations.py @@ -4,4 +4,4 @@ from django.core.management import call_command @pytest.mark.django_db() def test_missing_migrations() -> None: - call_command("makemigrations", "--check") + call_command("makemigrations", "--check", "--dry-run")