]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH...
authorPablo Galindo <Pablogsal@gmail.com>
Fri, 4 Jun 2021 23:33:20 +0000 (00:33 +0100)
committerGitHub <noreply@github.com>
Fri, 4 Jun 2021 23:33:20 +0000 (00:33 +0100)
Lib/test/test_asyncio/test_subprocess.py

index 225a3babc844b81bb1ee36d72a728b94949dddcf..3cf88188ecf3b17d2a54eef24eb9881280283a5d 100644 (file)
@@ -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):