diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-29 13:04:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 13:04:44 (GMT) |
commit | d951157268b2122109098c792562b71ccc41920b (patch) | |
tree | 8d28a25c5549da0d385488eedec6c9962eb24b4b /Lib/test/test_embed.py | |
parent | 8017b804a06804793bcc0a7f734d8a846b0fe18a (diff) | |
download | cpython-d951157268b2122109098c792562b71ccc41920b.zip cpython-d951157268b2122109098c792562b71ccc41920b.tar.gz cpython-d951157268b2122109098c792562b71ccc41920b.tar.bz2 |
bpo-20891: Reenable test_embed.test_bpo20891() (GH-5420)
Diffstat (limited to 'Lib/test/test_embed.py')
-rw-r--r-- | Lib/test/test_embed.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index c9b6548..c7f45b5 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -198,9 +198,6 @@ 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 |