diff options
author | 2020-07-14 18:05:32 +0200 | |
---|---|---|
committer | 2024-04-03 07:31:13 +0200 | |
commit | 9bc914af118a804887b284adebf8592ffaff28ac (patch) | |
tree | 71769aca906fe080ef3152d7d79361225cc2a8bb | |
parent | Blacklist test_pickletools from __all__ test as it imports numpy (diff) | |
download | cpython-9bc914af118a804887b284adebf8592ffaff28ac.tar.gz cpython-9bc914af118a804887b284adebf8592ffaff28ac.tar.bz2 cpython-9bc914af118a804887b284adebf8592ffaff28ac.zip |
Skip RDS socket tests that hang frequently
-rw-r--r-- | Lib/test/test_socket.py | 1 |
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'): |