Kaydet (Commit) e23a5f9a authored tarafından Florian Apolloner's avatar Florian Apolloner

Fixed a regression in the test runner loading of runtests.py.

Refs #17365, #17366, #18727.
üst 9012833a
......@@ -167,9 +167,12 @@ def django_tests(verbosity, interactive, failfast, test_labels):
extra_tests = []
# Run the test suite, including the extra validation tests.
from django.test.runner import DiscoverRunner
from django.test.utils import get_runner
if not hasattr(settings, 'TEST_RUNNER'):
settings.TEST_RUNNER = 'django.test.runner.DiscoverRunner'
TestRunner = get_runner(settings)
test_runner = DiscoverRunner(
test_runner = TestRunner(
verbosity=verbosity,
interactive=interactive,
failfast=failfast,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment