diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-09-19 14:38:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 14:38:13 (GMT) |
commit | b2dd2dd6e9212ba6b03885b998736a180ef283d6 (patch) | |
tree | 23278e08723e3b91e05406b31a405167d40d45dc /Lib | |
parent | 96b1c59c71534db3f0f3799cd84e2006923a5098 (diff) | |
download | cpython-b2dd2dd6e9212ba6b03885b998736a180ef283d6.zip cpython-b2dd2dd6e9212ba6b03885b998736a180ef283d6.tar.gz cpython-b2dd2dd6e9212ba6b03885b998736a180ef283d6.tar.bz2 |
bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_regrtest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 5091199..fa37ecd 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -1151,8 +1151,7 @@ class ArgsTestCase(BaseTestCase): env_changed=[testname], fail_env_changed=True) - @unittest.skipIf(sys.platform == 'win32', - 'bpo-37531, bpo-38207: test hangs randomly on Windows') + @unittest.skipIf(True, 'bpo-37531, bpo-38207: test hangs randomly') def test_multiprocessing_timeout(self): code = textwrap.dedent(r""" import time |