aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-07-14 18:05:32 +0200
committerMichał Górny <mgorny@gentoo.org>2024-02-07 07:44:13 +0100
commit24ec9a0879e5b3b60511ddce654573835fb02acd (patch)
tree1a0c6c942d7e4f1d1e1f3a0f29c4bccba29f474a
parentBlacklist test_pickletools from __all__ test as it imports numpy (diff)
downloadcpython-24ec9a0879e5b3b60511ddce654573835fb02acd.tar.gz
cpython-24ec9a0879e5b3b60511ddce654573835fb02acd.tar.bz2
cpython-24ec9a0879e5b3b60511ddce654573835fb02acd.zip
Skip RDS socket tests that hang frequently
-rw-r--r--Lib/test/test_socket.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 10eee5a37d3..02f394872f3 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2302,6 +2302,7 @@ class BasicRDSTest(unittest.TestCase):
@unittest.skipUnless(HAVE_SOCKET_RDS, 'RDS sockets required for this test.')
+@unittest.skip('Hangs frequently')
class RDSTest(ThreadedRDSSocketTest):
def __init__(self, methodName='runTest'):