From: Pablo Galindo Date: Fri, 4 Jun 2021 23:33:20 +0000 (+0100) Subject: bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH... X-Git-Tag: v3.11.0a1~936 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f171877ebe276749f31386baed5841ce37cbee2e;p=thirdparty%2FPython%2Fcpython.git bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542) --- diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 225a3babc844..3cf88188ecf3 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):