From 018f7f9b9393b92f6fff79cf775817827de08a03 Mon Sep 17 00:00:00 2001 From: Jer-Pha <131234246+Jer-Pha@users.noreply.github.com> Date: Wed, 12 Jun 2024 20:15:40 -0700 Subject: [PATCH] Update tox.ini command for Django 4.2 --check implies --dry-run on Django>=4.2 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5b069c5..1f8e38f 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ setenv = deps = -r{toxinidir}/requirements/local.txt commands = # Ensure there aren't missing migrations - python manage.py makemigrations --check --dry-run + python manage.py makemigrations --check # Run the tests and report coverage coverage run ./manage.py test