[Python-checkins] bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282)
Victor Stinner
webhook-mailer at python.org
Thu Sep 19 10:38:24 EDT 2019
https://github.com/python/cpython/commit/b2dd2dd6e9212ba6b03885b998736a180ef283d6
commit: b2dd2dd6e9212ba6b03885b998736a180ef283d6
branch: master
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2019-09-19T16:38:13+02:00
summary:
bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282)
files:
M Lib/test/test_regrtest.py
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py
index 50911995ad1e..fa37ecde3762 100644
--- a/Lib/test/test_regrtest.py
+++ b/Lib/test/test_regrtest.py
@@ -1151,8 +1151,7 @@ def test_garbage(self):
env_changed=[testname],
fail_env_changed=True)
- @unittest.skipIf(sys.platform == 'win32',
- 'bpo-37531, bpo-38207: test hangs randomly on Windows')
+ @unittest.skipIf(True, 'bpo-37531, bpo-38207: test hangs randomly')
def test_multiprocessing_timeout(self):
code = textwrap.dedent(r"""
import time
More information about the Python-checkins
mailing list