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

pablogsal webhook-mailer at python.org
Fri Jun 4 19:33:28 EDT 2021


https://github.com/python/cpython/commit/f171877ebe276749f31386baed5841ce37cbee2e
commit: f171877ebe276749f31386baed5841ce37cbee2e
branch: main
author: Pablo Galindo <Pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-06-05T00:33:20+01:00
summary:

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

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 225a3babc844b8..3cf88188ecf3b1 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -665,6 +665,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