diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-12-21 23:05:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 23:05:05 (GMT) |
commit | 550ee051d605b909dd75ef686d8e1244a0994394 (patch) | |
tree | d42392be904728b57f23a32cde9c43a585512143 /Lib | |
parent | 9bee329130aae5a13050c08dab9d349b76e66835 (diff) | |
download | cpython-550ee051d605b909dd75ef686d8e1244a0994394.zip cpython-550ee051d605b909dd75ef686d8e1244a0994394.tar.gz cpython-550ee051d605b909dd75ef686d8e1244a0994394.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_embed.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index c7f45b5..c9b6548 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -198,6 +198,9 @@ class EmbeddingTests(unittest.TestCase): self.assertEqual(out, '') self.assertEqual(err, '') + @unittest.skipIf(True, + "FIXME: test fails randomly because of a race conditon, " + "see bpo-20891") def test_bpo20891(self): """ bpo-20891: Calling PyGILState_Ensure in a non-Python thread before |