Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

gh-119659: Fix support.no_rerun decorator #119675

Closed
wants to merge 1 commit into from

Conversation

sobolevn
Copy link
Member

@sobolevn sobolevn commented May 28, 2024

I've cropped some unrelated parts of the output out.

Before

On class:

» ./python.exe -m test test_datetime -m test_utc_capi -v -R 3:3

----------------------------------------------------------------------
Ran 0 tests in 0.000s

NO TESTS RAN
test_datetime ran no tests

== Tests result: NO TESTS RAN ==

1 test run no tests:
    test_datetime

On method:

» ./python.exe -m test test_import -m test_basic_multiple_interpreters_deleted_no_reset -R 3:3 -v

test_basic_multiple_interpreters_deleted_no_reset (test.test_import.SinglephaseInitTests.test_basic_multiple_interpreters_deleted_no_reset) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.059s

OK
X

test_basic_multiple_interpreters_deleted_no_reset (test.test_import.SinglephaseInitTests.test_basic_multiple_interpreters_deleted_no_reset) ... skipped 'rerun not possible; module state is never cleared (see gh-102251)'

----------------------------------------------------------------------
Ran 1 test in 0.000s

OK (skipped=1)
.

After

On class:

» ./python.exe -m test test_datetime -m test_utc_capi -v -R 3:3

test_utc_capi (test.datetimetester.CapiTest_Pure.test_utc_capi) ... skipped 'Not relevant in pure Python'
test_utc_capi (test.datetimetester.CapiTest_Fast.test_utc_capi) ... ok

----------------------------------------------------------------------
Ran 2 tests in 0.000s

OK (skipped=1)
X

setUpClass (test.datetimetester.CapiTest_Pure) ... skipped 'the encapsulated datetime C API does not support reloading'
setUpClass (test.datetimetester.CapiTest_Fast) ... skipped 'the encapsulated datetime C API does not support reloading'

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK (skipped=2)
X

On method:

» ./python.exe -m test test_import -m test_basic_multiple_interpreters_deleted_no_reset -R 3:3 -v

test_basic_multiple_interpreters_deleted_no_reset (test.test_import.SinglephaseInitTests.test_basic_multiple_interpreters_deleted_no_reset) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.056s

OK
X
.test_basic_multiple_interpreters_deleted_no_reset (test.test_import.SinglephaseInitTests.test_basic_multiple_interpreters_deleted_no_reset) ... skipped 'rerun not possible; module state is never cleared (see gh-102251)'

----------------------------------------------------------------------
Ran 1 test in 0.000s

OK (skipped=1)
.

@bedevere-bot
Copy link

🤖 New build scheduled with the buildbot fleet by @sobolevn for commit 6198a35 🤖

If you want to schedule another build, you need to add the 🔨 test-with-refleak-buildbots label again.

# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants