diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:05:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:10:59 +0200 |
commit | db73c7dc6ae10d89672f35f74cb5e08055deeb42 (patch) | |
tree | 3a7d484815cbc7a96a950d38fb9a96f8a3ba1357 | |
parent | [3.6] bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface ... (diff) | |
download | cpython-db73c7dc6ae10d89672f35f74cb5e08055deeb42.tar.gz cpython-db73c7dc6ae10d89672f35f74cb5e08055deeb42.tar.bz2 cpython-db73c7dc6ae10d89672f35f74cb5e08055deeb42.zip |
Skip RDS socket tests that hang frequentlygentoo-3.6.11-r2
-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 95c3938ac23..5b52ea9764b 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1712,6 +1712,7 @@ class BasicRDSTest(unittest.TestCase): @unittest.skipUnless(HAVE_SOCKET_RDS, 'RDS sockets required for this test.') @unittest.skipUnless(thread, 'Threading required for this test.') +@unittest.skip('Hangs frequently') class RDSTest(ThreadedRDSSocketTest): def __init__(self, methodName='runTest'): |