We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610ed05 commit d07c086Copy full SHA for d07c086
Makefile
@@ -31,7 +31,7 @@ migrations-check:
31
run:
32
python -m manage runserver 0.0.0.0:8000
33
34
-test: migrations-check
+test:
35
@python -m coverage run --source=. --module manage test --verbosity 2 $(APP_LIST)
36
37
watch-scss:
djangoproject/tests.py
@@ -118,6 +118,7 @@ def test_www_host_with_port(self):
118
self.assertIn("Vary", resp)
119
120
121
+# https://adamj.eu/tech/2024/06/23/django-test-pending-migrations/
122
class PendingMigrationsTests(TestCase):
123
def test_no_pending_migrations(self):
124
out = StringIO()
0 commit comments