diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-25 12:23:30 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-25 12:23:30 +0000 |
| commit | 14116bc53eec6cd35447fad72b0fdaae84900d7d (patch) | |
| tree | cf18ef2c7c98e6b6e1ad672d983782291429a0cc /django/test | |
| parent | 6755a039eb2739a2bdaac4cd9b333e8c83b75836 (diff) | |
Fixed #12672 -- Added the ability to configure which applications are available on which database.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12290 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/simple.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/django/test/simple.py b/django/test/simple.py index 6219ddd2da..dc107dcb14 100644 --- a/django/test/simple.py +++ b/django/test/simple.py @@ -284,17 +284,11 @@ class DjangoTestSuiteRunner(object): Returns the number of tests that failed. """ self.setup_test_environment() - suite = self.build_suite(test_labels, extra_tests) - old_config = self.setup_databases() - result = self.run_suite(suite) - self.teardown_databases(old_config) - self.teardown_test_environment() - return self.suite_result(result) def run_tests(test_labels, verbosity=1, interactive=True, failfast=False, extra_tests=None): |
