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:18:39 +0100 |
commit | 24492d9527876739b21b256e4d6f19a0096801bc (patch) | |
tree | 1417a3b5c5af23fe11c0327689c38e3bf7ad22c9 | |
parent | Blacklist test_pickletools from __all__ test as it imports numpy (diff) | |
download | cpython-gentoo-3.9.2rc1.tar.gz cpython-gentoo-3.9.2rc1.tar.bz2 cpython-gentoo-3.9.2rc1.zip |
Skip RDS socket tests that hang frequentlygentoo-3.9.2rc1
-rwxr-xr-x | 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 aefba4f397b..46d965add54 100755 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2241,6 +2241,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'): |