Commit ed5e3c3d authored by Justin Bronn's avatar Justin Bronn
Browse files

[1.0.X] Fixed #10791 -- The GeoDjango test runner now respects the `--noinput`...

[1.0.X] Fixed #10791 -- The GeoDjango test runner now respects the `--noinput` command-line option, thanks to seanl for ticket & patch.

Backport of r10601 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10613 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7ff22ef2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ def run_tests(test_labels, verbosity=1, interactive=True, extra_tests=[], suite=
            suite.addTest(test)

    # Creating the test spatial database.
    create_spatial_db(test=True, verbosity=verbosity)
    create_spatial_db(test=True, verbosity=verbosity, autoclobber=not interactive)

    # Executing the tests (including the model tests), and destorying the
    # test database after the tests have completed.