Skip to content

Commit b2dd2dd

Browse files
authored
bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282)
1 parent 96b1c59 commit b2dd2dd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/test/test_regrtest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,8 +1151,7 @@ def test_garbage(self):
11511151
env_changed=[testname],
11521152
fail_env_changed=True)
11531153

1154-
@unittest.skipIf(sys.platform == 'win32',
1155-
'bpo-37531, bpo-38207: test hangs randomly on Windows')
1154+
@unittest.skipIf(True, 'bpo-37531, bpo-38207: test hangs randomly')
11561155
def test_multiprocessing_timeout(self):
11571156
code = textwrap.dedent(r"""
11581157
import time

0 commit comments

Comments
 (0)