bpo-20891: Skip test_embed.test_bpo20891() (#4967) (#4969) · python/cpython@2e1ef00 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- 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
Lines changed: 3 additions & 0 deletions
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 |