We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40742d commit 3326c57Copy full SHA for 3326c57
test/test_utils/test_runner.py
@@ -285,11 +285,11 @@ def run_test(
285
print(output.read())
286
output.seek(0)
287
288
- # change in way skipped tested counted from Python 3.12.1 onwards
+ # change in way skipped tested counted in Python 3.12.1 only (so far)
289
+ # This was changed and then reverted in 3.12.2
290
+ # https://github.com/python/cpython/pull/114994
291
tests_run_and_skipped = results.testsRun
- if sys.version_info.minor >= 13 or (
- sys.version_info.minor == 12 and sys.version_info.micro >= 1
292
- ):
+ if sys.version_info.minor == 12 and sys.version_info.micro == 1:
293
tests_run_and_skipped += len(results.skipped)
294
295
results = {
0 commit comments