mirror of
https://github.com/django/django.git
synced 2025-03-11 18:02:35 +00:00
Refs #24075 -- Silenced needless call_command output while running tests
Thanks Tim Graham for the report
This commit is contained in:
parent
67dbc56ec8
commit
51dc617b21
@ -585,6 +585,6 @@ class MigrateTests(TestCase):
|
|||||||
INSTALLED_APPS=["django.contrib.auth", "django.contrib.contenttypes"],
|
INSTALLED_APPS=["django.contrib.auth", "django.contrib.contenttypes"],
|
||||||
MIGRATION_MODULES={'auth': 'django.contrib.auth.migrations'},
|
MIGRATION_MODULES={'auth': 'django.contrib.auth.migrations'},
|
||||||
):
|
):
|
||||||
call_command("migrate", "auth", "zero", stdout=six.StringIO())
|
call_command("migrate", "auth", "zero", verbosity=0)
|
||||||
finally:
|
finally:
|
||||||
call_command("migrate", stdout=six.StringIO())
|
call_command("migrate", verbosity=0)
|
||||||
|
@ -257,6 +257,6 @@ class MigrateTests(TestCase):
|
|||||||
INSTALLED_APPS=["django.contrib.contenttypes"],
|
INSTALLED_APPS=["django.contrib.contenttypes"],
|
||||||
MIGRATION_MODULES={'contenttypes': 'django.contrib.contenttypes.migrations'},
|
MIGRATION_MODULES={'contenttypes': 'django.contrib.contenttypes.migrations'},
|
||||||
):
|
):
|
||||||
call_command("migrate", "contenttypes", "zero", stdout=six.StringIO())
|
call_command("migrate", "contenttypes", "zero", verbosity=0)
|
||||||
finally:
|
finally:
|
||||||
call_command("migrate", stdout=six.StringIO())
|
call_command("migrate", verbosity=0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user