diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-14 18:05:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-19 05:28:26 +0200 |
commit | a4a07e2565c540c4c3744251dffae9fe17ac3ee8 (patch) | |
tree | 57d7e12cfa5a0ae950644aa188432324b99ac974 | |
parent | test.support.unlink: ignore PermissionError (diff) | |
download | cpython-a4a07e2565c540c4c3744251dffae9fe17ac3ee8.tar.gz cpython-a4a07e2565c540c4c3744251dffae9fe17ac3ee8.tar.bz2 cpython-a4a07e2565c540c4c3744251dffae9fe17ac3ee8.zip |
Skip RDS socket tests that hang frequentlygentoo-3.7.9
-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 41ba53b4815..984ae54b1ba 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1995,6 +1995,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'): |