Skip to content

Commit b9877cd

Browse files
authored
bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on Windows (GH-16247)
It is a known and tracked bug: disable the test until it's fixed.
1 parent 1ce16fb commit b9877cd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_regrtest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,8 @@ def test_garbage(self):
11541154
env_changed=[testname],
11551155
fail_env_changed=True)
11561156

1157+
@unittest.skipIf(sys.platform == 'win32',
1158+
'bpo-37531, bpo-38207: test hangs randomly on Windows')
11571159
def test_multiprocessing_timeout(self):
11581160
code = textwrap.dedent(r"""
11591161
import time

0 commit comments

Comments
 (0)