Skip to content

Commit b897519

Browse files
committed
Changed the test runner to use the verbosity set on the command line when loading fixtures.
- Legacy-Id: 12446
1 parent cfd898b commit b897519

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def safe_create_1(self, verbosity, *args, **kwargs):
8484
if settings.GLOBAL_TEST_FIXTURES:
8585
print " Loading global test fixtures: %s" % ", ".join(settings.GLOBAL_TEST_FIXTURES)
8686
loadable = [f for f in settings.GLOBAL_TEST_FIXTURES if "." not in f]
87-
call_command('loaddata', *loadable, verbosity=0, commit=False, database="default")
87+
call_command('loaddata', *loadable, verbosity=verbosity, commit=False, database="default")
8888

8989
for f in settings.GLOBAL_TEST_FIXTURES:
9090
if f not in loadable:

0 commit comments

Comments
 (0)