Commit 33190e5e authored by Jason Madden's avatar Jason Madden

monkey-patched test_signal is flaky under certain timing conditions on travis.

parent bb20975f
......@@ -94,9 +94,15 @@ if sys.platform == 'win32':
if LEAKTEST:
FAILING_TESTS += [
'FLAKY test__backdoor.py',
'FLAKY test__socket_errors.py'
'FLAKY test__socket_errors.py',
]
if os.environ.get("TRAVIS") == "true":
FAILING_TESTS += [
# On Travis, this very frequently fails due to timing
'FLAKY test_signal.py',
]
if PYPY:
FAILING_TESTS += [
......
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