mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
1ce16fb097
commit
b9877cd2cc
1 changed files with 2 additions and 0 deletions
|
@ -1154,6 +1154,8 @@ class ArgsTestCase(BaseTestCase):
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue