diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-06-04 23:33:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-04 23:33:20 (GMT) |
commit | f171877ebe276749f31386baed5841ce37cbee2e (patch) | |
tree | 64325c82ec9b6b3c877ec42415b9fbc2bc7aacd0 /Lib/test/test_asyncio | |
parent | 3668e118f77c4e53167b75352c53674e758e1877 (diff) | |
download | cpython-f171877ebe276749f31386baed5841ce37cbee2e.zip cpython-f171877ebe276749f31386baed5841ce37cbee2e.tar.gz cpython-f171877ebe276749f31386baed5841ce37cbee2e.tar.bz2 |
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542)
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r-- | Lib/test/test_asyncio/test_subprocess.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 225a3ba..3cf8818 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -665,6 +665,8 @@ if sys.platform != 'win32': Watcher = unix_events.ThreadedChildWatcher + @unittest.skip("bpo-38323: MultiLoopChildWatcher has a race condition \ + and these tests can hang the test suite") class SubprocessMultiLoopWatcherTests(SubprocessWatcherMixin, test_utils.TestCase): |