Commit b34a8d2a authored by Jason Madden's avatar Jason Madden

Sigh. another flaky timing related test on appveyor.

parent 9b43bc4b
...@@ -94,6 +94,17 @@ if sys.platform == 'win32': ...@@ -94,6 +94,17 @@ if sys.platform == 'win32':
'FLAKY test__socket.py', 'FLAKY test__socket.py',
] ]
if PY3:
FAILING_TESTS += [
# test_set_and_clear in Py3 relies on 5 threads all starting and
# coming to an Event wait point while a sixth thread sleeps for a half
# second. The sixth thread then does something and checks that
# the 5 threads were all at the wait point. But the timing is sometimes
# too tight for appveyor. This happens even if Event isn't
# monkey-patched
'FLAKY test_threading.py',
]
if not PY35: if not PY35:
# Py35 added socket.socketpair, all other releases # Py35 added socket.socketpair, all other releases
# are missing it # are missing it
......
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