diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:05:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-06-06 03:10:42 +0200 |
commit | 9ce7c93e4f2262cac373e4e0f8206b76cfdff9d7 (patch) | |
tree | d805635c1ed0790103c2fdad75b95a88f5ef5ca2 | |
parent | Blacklist test_pickletools from __all__ test as it imports numpy (diff) | |
download | cpython-9ce7c93e4f2262cac373e4e0f8206b76cfdff9d7.tar.gz cpython-9ce7c93e4f2262cac373e4e0f8206b76cfdff9d7.tar.bz2 cpython-9ce7c93e4f2262cac373e4e0f8206b76cfdff9d7.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 680c104db70..ad1fe8db9dd 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2412,6 +2412,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'): |