Commit fee898a3 authored by Jason Madden's avatar Jason Madden

a subprocess test is flaky under pypy with GEVENT_FILE=thread; the existing...

a subprocess test is flaky under pypy with GEVENT_FILE=thread; the existing command doesn't seem to quite catch that.
parent f76801b7
......@@ -197,6 +197,12 @@ if hasattr(sys, 'pypy_version_info'):
# https://bitbucket.org/cffi/cffi/issue/152/handling-errors-from-signal-handlers-in
]
if 'thread' in os.getenv('GEVENT_FILE', ''):
disabled_tests += [
'test_subprocess.ProcessTestCase.test_double_close_on_error'
# Fails with "OSError: 9 invalid file descriptor"; expect GC/lifetime issues
]
if sys.version_info[:2] >= (3, 4):
disabled_tests += [
'test_subprocess.ProcessTestCase.test_threadsafe_wait',
......
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