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>2023-08-24 18:11:53 +0200
commitb30161afe5c2f5cf975dc857fa296bb048b5f416 (patch)
tree51cfe81f17b62e4d9e6aa22268f8a0df3fc4e59f
parentBlacklist test_pickletools from __all__ test as it imports numpy (diff)
downloadcpython-b30161afe5c2f5cf975dc857fa296bb048b5f416.tar.gz
cpython-b30161afe5c2f5cf975dc857fa296bb048b5f416.tar.bz2
cpython-b30161afe5c2f5cf975dc857fa296bb048b5f416.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 211fd8c02da..5bf1a5f53f4 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2254,6 +2254,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'):