bpo-20891: Skip test_embed.test_bpo20891() (#4967) (#4969) · python/cpython@2e1ef00 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 2e1ef00
Skip the test failing randomly because of known race condition. Skip the test to fix macOS buildbots until a decision is made on the proper fix for the race condition. (cherry picked from commit 550ee05)
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -494,6 +494,9 @@ def test_pre_initialization_api(self): | ||
494 | 494 | self.assertEqual(out, '') |
495 | 495 | self.assertEqual(err, '') |
496 | 496 | |
497 | +@unittest.skipIf(True, | |
498 | + "FIXME: test fails randomly because of a race conditon, " | |
499 | + "see bpo-20891") | |
497 | 500 | def test_bpo20891(self): |
498 | 501 | """ |
499 | 502 | bpo-20891: Calling PyGILState_Ensure in a non-Python thread before |