From be51a83c16c6e45946bbd66a52e00994e3f58553 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Sep 2019 01:33:19 +0200 Subject: [PATCH] bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on Windows It is a known and tracked bug: disable the test until it's fixed. --- Lib/test/test_regrtest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 931f125eb8f9eb8..ef2ee90d2a0d6fc 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -1154,6 +1154,8 @@ 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') def test_multiprocessing_timeout(self): code = textwrap.dedent(r""" import time