Fixed a regression in the test runner loading of runtests.py.
Refs #17365, #17366, #18727.
This commit is contained in:
parent
9012833af8
commit
e23a5f9a47
|
@ -167,9 +167,12 @@ def django_tests(verbosity, interactive, failfast, test_labels):
|
||||||
extra_tests = []
|
extra_tests = []
|
||||||
|
|
||||||
# Run the test suite, including the extra validation 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,
|
verbosity=verbosity,
|
||||||
interactive=interactive,
|
interactive=interactive,
|
||||||
failfast=failfast,
|
failfast=failfast,
|
||||||
|
|
Loading…
Reference in New Issue