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

pablogsal webhook-mailer at python.org
Sat Jun 12 13:45:19 EDT 2021


https://github.com/python/cpython/commit/af5fb6706219d7949c1db5c9f2b7da53198123f3
commit: af5fb6706219d7949c1db5c9f2b7da53198123f3
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-06-12T18:45:10+01:00
summary:

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

(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 fe8cfa61b1b2d5..40f17b8f1a0079 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -676,6 +676,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