From ed5e3c3d2bf58583dcf50481b2d79f839b411b58 Mon Sep 17 00:00:00 2001 From: Justin Bronn Date: Tue, 21 Apr 2009 20:14:42 +0000 Subject: [PATCH] [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 --- django/contrib/gis/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/gis/tests/__init__.py b/django/contrib/gis/tests/__init__.py index 19d305e3bd..fe7e33311c 100644 --- a/django/contrib/gis/tests/__init__.py +++ b/django/contrib/gis/tests/__init__.py @@ -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.