]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 4 Jun 2021 23:59:55 +0000 (16:59 -0700)
committerGitHub <noreply@github.com>
Fri, 4 Jun 2021 23:59:55 +0000 (16:59 -0700)
(cherry picked from commit f171877ebe276749f31386baed5841ce37cbee2e)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Lib/test/test_asyncio/test_subprocess.py

index 6657a88e657c256133bb75cf70baafd4fa426c9a..693cc4129043070e7c00b7b9e3e32cef65a3a6aa 100644 (file)
@@ -684,6 +684,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):