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-09-07 08:35:31 +0200
commitf0a1e5a8163b3de2dbbc0fe0dae0663e5137ae96 (patch)
tree8a12990691831ac52f7e4706480ac29443c57aff
parentBlacklist test_pickletools from __all__ test as it imports numpy (diff)
downloadcpython-f0a1e5a8163b3de2dbbc0fe0dae0663e5137ae96.tar.gz
cpython-f0a1e5a8163b3de2dbbc0fe0dae0663e5137ae96.tar.bz2
cpython-f0a1e5a8163b3de2dbbc0fe0dae0663e5137ae96.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 39b758c7157..35a97a407c8 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2105,6 +2105,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'):