diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-19 13:50:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 13:50:27 (GMT) |
commit | 67d9363372d9b214d9aa1812163866c9804aa55a (patch) | |
tree | 902535249a57976e0d6c06aad0db943c7509a00e /Makefile.pre.in | |
parent | f2636d2c45aae0a04960dcfbc7d9a2a8a36ba3bc (diff) | |
download | cpython-67d9363372d9b214d9aa1812163866c9804aa55a.zip cpython-67d9363372d9b214d9aa1812163866c9804aa55a.tar.gz cpython-67d9363372d9b214d9aa1812163866c9804aa55a.tar.bz2 |
gh-109566: Run GHA and buildbot tests with --fail-rerun (#109567)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 35f2545..7b03dd2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1887,7 +1887,7 @@ buildbottest: all -@if which pybuildbot.identify >/dev/null 2>&1; then \ pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \ fi - $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --timeout=$(TESTTIMEOUT) $(TESTOPTS) + $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --fail-rerun --timeout=$(TESTTIMEOUT) $(TESTOPTS) # Like testall, but run Python tests with HOSTRUNNER directly. .PHONY: hostrunnertest |