From c8bebbd541d601ed283617166609b37d2ccd7f96 Mon Sep 17 00:00:00 2001 From: François Freitag Date: Wed, 13 May 2020 07:12:43 +0000 Subject: Disabled management commands output with verbosity 0 in various tests. --- tests/swappable_models/tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tests/swappable_models') diff --git a/tests/swappable_models/tests.py b/tests/swappable_models/tests.py index bdf681dd87..b1bcaa9f70 100644 --- a/tests/swappable_models/tests.py +++ b/tests/swappable_models/tests.py @@ -1,5 +1,3 @@ -from io import StringIO - from django.contrib.auth.models import Permission from django.contrib.contenttypes.models import ContentType from django.core import management @@ -26,8 +24,7 @@ class SwappableModelTests(TestCase): ContentType.objects.filter(app_label='swappable_models').delete() # Re-run migrate. This will re-build the permissions and content types. - new_io = StringIO() - management.call_command('migrate', interactive=False, stdout=new_io) + management.call_command('migrate', interactive=False, verbosity=0) # Content types and permissions exist for the swapped model, # but not for the swappable model. -- cgit v1.3