mirror of
https://github.com/python/cpython.git
synced 2025-10-01 12:52:18 +00:00
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 550ee051d6
)
This commit is contained in:
parent
3bc68cff5b
commit
2e1ef00171
1 changed files with 3 additions and 0 deletions
|
@ -494,6 +494,9 @@ class EmbeddingTests(unittest.TestCase):
|
||||||
self.assertEqual(out, '')
|
self.assertEqual(out, '')
|
||||||
self.assertEqual(err, '')
|
self.assertEqual(err, '')
|
||||||
|
|
||||||
|
@unittest.skipIf(True,
|
||||||
|
"FIXME: test fails randomly because of a race conditon, "
|
||||||
|
"see bpo-20891")
|
||||||
def test_bpo20891(self):
|
def test_bpo20891(self):
|
||||||
"""
|
"""
|
||||||
bpo-20891: Calling PyGILState_Ensure in a non-Python thread before
|
bpo-20891: Calling PyGILState_Ensure in a non-Python thread before
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue