Commit b419bd38 authored by Markus Holtermann's avatar Markus Holtermann
Browse files

[1.7.x] Refs #24075 -- Silenced needless call_command output while running tests

Thanks Tim Graham for the report

Backport of 51dc617b from master
parent 327703c0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -521,6 +521,6 @@ class MigrateTests(TestCase):
                INSTALLED_APPS=["django.contrib.auth", "django.contrib.contenttypes"],
                MIGRATION_MODULES={'auth': 'django.contrib.auth.migrations'},
            ):
                call_command("migrate", "auth", "zero", stdout=six.StringIO())
                call_command("migrate", "auth", "zero", verbosity=0)
        finally:
            call_command("migrate", stdout=six.StringIO())
            call_command("migrate", verbosity=0)
+2 −2
Original line number Diff line number Diff line
@@ -259,6 +259,6 @@ class MigrateTests(TestCase):
                INSTALLED_APPS=["django.contrib.contenttypes"],
                MIGRATION_MODULES={'contenttypes': 'django.contrib.contenttypes.migrations'},
            ):
                call_command("migrate", "contenttypes", "zero", stdout=six.StringIO())
                call_command("migrate", "contenttypes", "zero", verbosity=0)
        finally:
            call_command("migrate", stdout=six.StringIO())
            call_command("migrate", verbosity=0)