diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-06-05 00:05:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 00:05:54 (GMT) |
commit | 0d441d2e70e365b5dc517d8ff24a20b97bc4536a (patch) | |
tree | 19208c76f10d2d10faefea229c25af103f2e7a72 /Lib | |
parent | 1065ba66b535b786d6dc5f7d912c6486d9a834ae (diff) | |
download | cpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.zip cpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.tar.gz cpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.tar.bz2 |
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542) (GH-26544)
(cherry picked from commit f171877ebe276749f31386baed5841ce37cbee2e)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Lib')
-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): |