diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-09-17 23:58:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 23:58:29 (GMT) |
commit | b9877cd2cc47b6f3512c171814c4f630286279b9 (patch) | |
tree | da0b23054d5a9c04187c4bfac3afd40952cd7090 /Lib | |
parent | 1ce16fb0977283ae42a9f8917bbca5f44aa69324 (diff) | |
download | cpython-b9877cd2cc47b6f3512c171814c4f630286279b9.zip cpython-b9877cd2cc47b6f3512c171814c4f630286279b9.tar.gz cpython-b9877cd2cc47b6f3512c171814c4f630286279b9.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_regrtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 931f125..ef2ee90 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -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 |