]> 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>
Sat, 12 Jun 2021 17:45:10 +0000 (10:45 -0700)
committerGitHub <noreply@github.com>
Sat, 12 Jun 2021 17:45:10 +0000 (18:45 +0100)
(cherry picked from commit f171877ebe276749f31386baed5841ce37cbee2e)

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

index fe8cfa61b1b2d58328b762259ef30775e6783488..40f17b8f1a0079c8ba6bc968f0c3a540abca4586 100644 (file)
@@ -676,6 +676,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):