Skip to content

Commit 550ee05

Browse files
authored
bpo-20891: Skip test_embed.test_bpo20891() (#4967)
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.
1 parent 9bee329 commit 550ee05

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_embed.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ def test_pre_initialization_api(self):
198198
self.assertEqual(out, '')
199199
self.assertEqual(err, '')
200200

201+
@unittest.skipIf(True,
202+
"FIXME: test fails randomly because of a race conditon, "
203+
"see bpo-20891")
201204
def test_bpo20891(self):
202205
"""
203206
bpo-20891: Calling PyGILState_Ensure in a non-Python thread before

0 commit comments

Comments
 (0)