From 13126a625999e067de85bfdfe508a6efbd14bf4c Mon Sep 17 00:00:00 2001 From: Jonathan Metz Date: Sat, 24 Aug 2024 21:21:46 -0700 Subject: [PATCH] Remove unnecessary --dry-run flag --- tests/test_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_docker.sh b/tests/test_docker.sh index 473eede04..9811b4fdc 100755 --- a/tests/test_docker.sh +++ b/tests/test_docker.sh @@ -24,7 +24,7 @@ docker compose -f docker-compose.local.yml run django mypy my_awesome_project docker compose -f docker-compose.local.yml run django pytest # return non-zero status code if there are migrations that have not been created -docker compose -f docker-compose.local.yml run django python manage.py makemigrations --dry-run --check || { echo "ERROR: there were changes in the models, but migration listed above have not been created and are not saved in version control"; exit 1; } +docker compose -f docker-compose.local.yml run django python manage.py makemigrations --check || { echo "ERROR: there were changes in the models, but migration listed above have not been created and are not saved in version control"; exit 1; } # Test support for translations docker compose -f docker-compose.local.yml run django python manage.py makemessages --all