Commit d39073b8 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Hid Django installation message when verbosity is 0.

This message was introduced to help people figure out quickly when they
aren't running the tests against the copy of Django they're editing.
There's no reason to display it when verbosity is set to 0. It defaults
to 1.
parent 607af78b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -89,6 +89,7 @@ def get_installed():


def setup(verbosity, test_labels):
    if verbosity >= 1:
        print("Testing against Django installed in '%s'" % os.path.dirname(django.__file__))

    # Force declaring available_apps in TransactionTestCase for faster tests.