-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
Add --single-process
option to regrtest to always run tests sequentially (ignore -jN
option)
#119727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
My motivation for this change is also a desire to change the regrtest default to -j0: run tests in parallel using the number of CPU. |
This is an opposite of You can run tests with |
IMO "sequentially" is the right name. Note: there is already a |
I will not insist. The
|
--sequentially
option to regrtest to always run tests sequentially (ignore -jN
option)--single-process
option to regrtest to always run tests sequentially (ignore -jN
option)
Python test runner (regrtest) now runs tests in parallel by default. Use the --single-process option to run tests sequentially in a single process.
Python test runner (regrtest) now runs tests in parallel by default. Use the --single-process option to run tests sequentially in a single process.
The Python test runner (regrtest) now runs tests in parallel by default. Use the --single-process option to run tests sequentially in a single process.
Implemented by change 4e8aa32. |
(cherry picked from commit 4e8aa32)
…onGH-119728) (cherry picked from commit 4e8aa32) Co-authored-by: Victor Stinner <[email protected]>
…#130359) Co-authored-by: Victor Stinner <[email protected]>
The Python release process runs tests sequentially. It catchs some issues which are ignored silently when running tests in parallel.
I propose adding
--sequentially
option to regrtest to always run tests sequentially. It can be used to ignore any-jN
option and also to re-run failed tests sequentially.Linked PRs
The text was updated successfully, but these errors were encountered: