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-04-03 07:31:13 +0200
commit9bc914af118a804887b284adebf8592ffaff28ac (patch)
tree71769aca906fe080ef3152d7d79361225cc2a8bb
parentBlacklist test_pickletools from __all__ test as it imports numpy (diff)
downloadcpython-9bc914af118a804887b284adebf8592ffaff28ac.tar.gz
cpython-9bc914af118a804887b284adebf8592ffaff28ac.tar.bz2
cpython-9bc914af118a804887b284adebf8592ffaff28ac.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 42adc573ecc..953c51a0ed6 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2305,6 +2305,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'):