Disabled management commands output with verbosity 0 in various tests.

This commit is contained in:
François Freitag 2020-05-13 07:12:43 +00:00 committed by GitHub
parent 7cd88b3fec
commit c8bebbd541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 13 deletions

View file

@ -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.