From b2dd2dd6e9212ba6b03885b998736a180ef283d6 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 19 Sep 2019 16:38:13 +0200 Subject: [PATCH] bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282) --- Lib/test/test_regrtest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 50911995ad1..fa37ecde376 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -1151,8 +1151,7 @@ class ArgsTestCase(BaseTestCase): 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