]> granicus.if.org Git - python/commitdiff
bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on Windows (GH-16247)
authorVictor Stinner <vstinner@redhat.com>
Tue, 17 Sep 2019 23:58:29 +0000 (01:58 +0200)
committerGitHub <noreply@github.com>
Tue, 17 Sep 2019 23:58:29 +0000 (01:58 +0200)
It is a known and tracked bug: disable the test until it's fixed.

Lib/test/test_regrtest.py

index 931f125eb8f9eb8ad7ec228317aaf9e83b84e4e8..ef2ee90d2a0d6fcadd35f08f9c2c00ff937fe93c 100644 (file)
@@ -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