Skip to content

Commit 2e1ef00

Browse files
authored
bpo-20891: Skip test_embed.test_bpo20891() (#4967) (#4969)
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)
1 parent 3bc68cf commit 2e1ef00

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_capi.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,9 @@ def test_pre_initialization_api(self):
494494
self.assertEqual(out, '')
495495
self.assertEqual(err, '')
496496

497+
@unittest.skipIf(True,
498+
"FIXME: test fails randomly because of a race conditon, "
499+
"see bpo-20891")
497500
def test_bpo20891(self):
498501
"""
499502
bpo-20891: Calling PyGILState_Ensure in a non-Python thread before

0 commit comments

Comments
 (0)