-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
bpo-34279: regrtest consider that skipped tests are ran #11132
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
Conversation
|
With this change: Without this change: |
|
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
|
GH-11155 is a backport of this pull request to the 3.7 branch. |
bpo-34279, bpo-35412: support.run_unittest() no longer raises TestDidNotRun if a test result contains skipped tests. The exception is now only raised if no test have been run and no test have been skipped. (cherry picked from commit 3a8f4fe) Co-authored-by: Victor Stinner <[email protected]>
|
GH-11156 is a backport of this pull request to the 3.6 branch. |
|
Sorry, @vstinner, I could not cleanly backport this to |
bpo-34279, bpo-35412: support.run_unittest() no longer raises TestDidNotRun if a test result contains skipped tests. The exception is now only raised if no test have been run and no test have been skipped. (cherry picked from commit 3a8f4fe) Co-authored-by: Victor Stinner <[email protected]>
|
GH-11158 is a backport of this pull request to the 2.7 branch. |
bpo-34279, bpo-35412: support.run_unittest() no longer raises TestDidNotRun if a test result contains skipped tests. The exception is now only raised if no test have been run and no test have been skipped. (cherry picked from commit 3a8f4fe) Co-authored-by: Victor Stinner <[email protected]>
bpo-34279, bpo-35412: support.run_unittest() no longer raise
TestDidNotRun if the test result contains skipped tests. The
exception is now only raised if no test have been run and no test
have been skipped.