diff options
| author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2021-04-06 15:28:46 -0700 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-04-19 09:14:35 +0200 |
| commit | 9fa8460081e986d150c4ef958846b2d9f763e27e (patch) | |
| tree | 33acd442c07842af5c9c4ba18730a2ee20c03b50 /tests/runtests.py | |
| parent | aa4acc164d1247c0de515c959f7b09648b57dc42 (diff) | |
Fixed #32611 -- Prevented unecessary setup()/teardown() calls when using --bisect/--pair runtests options.
This commit changes runtests.py's bisect_tests() and paired_tests() to
change settings only when necessary, namely when specific test names
aren't provided.
Diffstat (limited to 'tests/runtests.py')
| -rwxr-xr-x | tests/runtests.py | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/tests/runtests.py b/tests/runtests.py index a82b183519..40e7483c5a 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -334,6 +334,14 @@ def django_tests(verbosity, interactive, failfast, keepdb, reverse, return failures +def get_app_test_labels(verbosity, parallel, start_at, start_after): + test_labels = [] + state = setup(verbosity, test_labels, parallel, start_at, start_after) + test_labels = get_installed() + teardown(state) + return test_labels + + def get_subprocess_args(options): subprocess_args = [ sys.executable, __file__, '--settings=%s' % options.settings @@ -352,9 +360,8 @@ def get_subprocess_args(options): def bisect_tests(bisection_label, options, test_labels, parallel, start_at, start_after): - state = setup(options.verbosity, test_labels, parallel, start_at, start_after) - - test_labels = test_labels or get_installed() + if not test_labels: + test_labels = get_app_test_labels(options.verbosity, parallel, start_at, start_after) print('***** Bisecting test suite: %s' % ' '.join(test_labels)) @@ -399,13 +406,11 @@ def bisect_tests(bisection_label, options, test_labels, parallel, start_at, star if len(test_labels) == 1: print("***** Source of error: %s" % test_labels[0]) - teardown(state) def paired_tests(paired_test, options, test_labels, parallel, start_at, start_after): - state = setup(options.verbosity, test_labels, parallel, start_at, start_after) - - test_labels = test_labels or get_installed() + if not test_labels: + test_labels = get_app_test_labels(options.verbosity, parallel, start_at, start_after) print('***** Trying paired execution') @@ -428,7 +433,6 @@ def paired_tests(paired_test, options, test_labels, parallel, start_at, start_af return print('***** No problem pair found') - teardown(state) if __name__ == "__main__": |
