Skip to content

Commit f74392b

Browse files
committed
Make the test database setup less verbose.
- Legacy-Id: 791
1 parent cb14a7e commit f74392b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
startup_database = settings.DATABASE_NAME # The startup database name, before changing to test_...
2121

22-
def run_tests(module_list, verbosity=1, extra_tests=[]):
22+
def run_tests(module_list, verbosity=0, extra_tests=[]):
2323
module_list.append(ietf.urls)
2424
# If we append 'ietf.tests', we get it twice, first as itself, then
2525
# during the search for a 'tests' module ...
26-
return django.test.simple.run_tests(module_list, verbosity, extra_tests)
26+
return django.test.simple.run_tests(module_list, 0, extra_tests)
2727

2828
def reduce_text(html, pre=False, fill=True):
2929
if html.count("<li>") > 5*html.count("</li>"):

0 commit comments

Comments
 (0)