summaryrefslogtreecommitdiff
path: root/django/test
diff options
context:
space:
mode:
Diffstat (limited to 'django/test')
-rw-r--r--django/test/simple.py6
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):