diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:05:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-02-17 09:23:23 +0100 |
commit | 5891e4b4049367cdc38acb152eb559cb5c3ef670 (patch) | |
tree | c431b8e0708bad5646c25d808544d328ba2a93f5 | |
parent | Blacklist test_pickletools from __all__ test as it imports numpy (diff) | |
download | cpython-gentoo-3.8.8rc1.tar.gz cpython-gentoo-3.8.8rc1.tar.bz2 cpython-gentoo-3.8.8rc1.zip |
Skip RDS socket tests that hang frequentlygentoo-3.8.8rc1
-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'): |