Commit 326be966 authored by Jason Madden's avatar Jason Madden

Skip test_socket.BasicTCPTest.testRecvFrom an appveyor/3.7

Because it fails to cleanup a thread for some reason.
parent cb5de2b3
......@@ -984,6 +984,14 @@ if PY37:
'test_ssl.ThreadedTests.test_check_hostname_idn',
]
if APPVEYOR:
disabled_tests += [
# Raises "AssertionError: wait_threads() failed to cleanup
# 1 threads after 60.0 seconds (count: 3, old count: 2)". reason is
# unknown.
'test_socket.BasicTCPTest.testRecvFrom',
]
# if 'signalfd' in os.environ.get('GEVENT_BACKEND', ''):
# # tests that don't interact well with signalfd
# disabled_tests.extend([
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment