-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
gh-118433: Temporarily skip test_interrupt_main_subthread
in free-threaded builds
#118485
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
gh-118433: Temporarily skip test_interrupt_main_subthread
in free-threaded builds
#118485
Conversation
Free-threaded builds can intermittently tickle a longstanding bug (24 years!) in the implementation of `threading.Condition`, leading to flakiness in the test suite. Fixing the underlying issue will require more discussion, and will likely apply to most of the concurrency primitives in the `threading` module that are written in Python. See pythongh-118433 for more details. Disable the test in free-threaded builds as a temporary measure to eliminate flakiness.
!buildbot M1 Refleaks NoGIL |
🤖 New build scheduled with the buildbot fleet by @colesbury for commit de8ab42 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brandtbucher is seeing repeated failures of this test on the Windows GitHub actions CI (https://github.com/python/cpython/actions/runs/8912122661/job/24481577797?pr=118481) so I'm going to enable auto-merge now. |
@colesbury - Isn't that a different test ( |
Well, that's doubly embarrassing... |
…free-threaded builds (python#118485) Free-threaded builds can intermittently tickle a longstanding bug (24 years!) in the implementation of `threading.Condition`, leading to flakiness in the test suite. Fixing the underlying issue will require more discussion, and will likely apply to most of the concurrency primitives in the `threading` module that are written in Python. See pythongh-118433 for more details.
Free-threaded builds can intermittently tickle a longstanding bug (24 years!) in the implementation of
threading.Condition
, leading to flakiness in the test suite. Fixing the underlying issue will require more discussion, and will likely apply to most of the concurrency primitives in thethreading
module that are written in Python. See gh-118433 for more details.Disable the test in free-threaded builds as a temporary measure to eliminate flakiness.