diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-25 14:21:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 14:21:01 (GMT) |
commit | 72fb39c9656f72d942c2fe8720fb9a183e438a8a (patch) | |
tree | f38d859db1cbad5ffd3fea58cf7898daa6d399c3 /Misc | |
parent | 64ab9f7d5c7cbe5ef997c7d841151e0e71e7f582 (diff) | |
download | cpython-72fb39c9656f72d942c2fe8720fb9a183e438a8a.zip cpython-72fb39c9656f72d942c2fe8720fb9a183e438a8a.tar.gz cpython-72fb39c9656f72d942c2fe8720fb9a183e438a8a.tar.bz2 |
gh-109276: regrtest re-runs "env changed" tests (#109831)
When a test fails with "env changed" and --rerun option is used, the
test is now re-run in verbose mode in a fresh process.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-09-25-14-41-18.gh-issue-109276.uC_cWo.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-25-14-41-18.gh-issue-109276.uC_cWo.rst b/Misc/NEWS.d/next/Tests/2023-09-25-14-41-18.gh-issue-109276.uC_cWo.rst new file mode 100644 index 0000000..66651cf --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-09-25-14-41-18.gh-issue-109276.uC_cWo.rst @@ -0,0 +1,3 @@ +regrtest: When a test fails with "env changed" and the --rerun option is +used, the test is now re-run in verbose mode in a fresh process. Patch by +Victor Stinner. |