summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-06-05 00:05:54 (GMT)
committerGitHub <noreply@github.com>2021-06-05 00:05:54 (GMT)
commit0d441d2e70e365b5dc517d8ff24a20b97bc4536a (patch)
tree19208c76f10d2d10faefea229c25af103f2e7a72 /Lib
parent1065ba66b535b786d6dc5f7d912c6486d9a834ae (diff)
downloadcpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.zip
cpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.tar.gz
cpython-0d441d2e70e365b5dc517d8ff24a20b97bc4536a.tar.bz2
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suite (GH-26542) (GH-26544)
(cherry picked from commit f171877ebe276749f31386baed5841ce37cbee2e) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 225a3ba..3cf8818 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -665,6 +665,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):