diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:05:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-25 09:58:44 +0200 |
commit | 564cdc96a76ddb0ecb356602f3a5ab919237098d (patch) | |
tree | 9fab4bbaa77372accf2e134a4b0f114e288ff2ad | |
parent | Blacklist test_pickletools from __all__ test as it imports numpy (diff) | |
download | cpython-564cdc96a76ddb0ecb356602f3a5ab919237098d.tar.gz cpython-564cdc96a76ddb0ecb356602f3a5ab919237098d.tar.bz2 cpython-564cdc96a76ddb0ecb356602f3a5ab919237098d.zip |
Skip RDS socket tests that hang frequentlygentoo-3.8.6
-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 f9370d8e52d..8c0a1d9710c 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2085,6 +2085,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'): |