[Python-checkins] bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542)

miss-islington webhook-mailer at python.org
Fri Jun 4 20:00:03 EDT 2021


https://github.com/python/cpython/commit/b3c50b29e14d8f089aee3e0980298bfc74cb3ba7
commit: b3c50b29e14d8f089aee3e0980298bfc74cb3ba7
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-06-04T16:59:55-07:00
summary:

bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542)

(cherry picked from commit f171877ebe276749f31386baed5841ce37cbee2e)

Co-authored-by: Pablo Galindo <Pablogsal at gmail.com>

files:
M Lib/test/test_asyncio/test_subprocess.py

diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 6657a88e657c25..693cc412904307 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -684,6 +684,8 @@ class SubprocessThreadedWatcherTests(SubprocessWatcherMixin,
 
         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):
 



More information about the Python-checkins mailing list