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,7 +94,13 @@ if sys.platform == 'win32': ...@@ -94,7 +94,13 @@ if sys.platform == 'win32':
if LEAKTEST: if LEAKTEST:
FAILING_TESTS += [ FAILING_TESTS += [
'FLAKY test__backdoor.py', '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',
] ]
......
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