Commit 23417899 authored by Jason Madden's avatar Jason Madden

Another failing pypy test.

parent 3e72a338
...@@ -717,6 +717,8 @@ if PYPY: ...@@ -717,6 +717,8 @@ if PYPY:
# Starting in 7.3.1 on Windows, this stopped raising ValueError; it appears to # Starting in 7.3.1 on Windows, this stopped raising ValueError; it appears to
# be a bug in PyPy. # be a bug in PyPy.
'test_signal.WakeupFDTests.test_invalid_fd', 'test_signal.WakeupFDTests.test_invalid_fd',
# Likewise for 7.3.1. See the comments for PY35
'test_socket.GeneralModuleTests.test_sock_ioctl',
] ]
if PY36: if PY36:
......
...@@ -300,8 +300,15 @@ if TRAVIS and (PYPY or OSX): ...@@ -300,8 +300,15 @@ if TRAVIS and (PYPY or OSX):
'test__threading_2.py', 'test__threading_2.py',
] ]
if TRAVIS and OSX:
IGNORED_TESTS += [
# This rarely hangs for unknown reasons. I cannot reproduce
# locally.
'test__issue230.py',
]
if LIBUV: if LIBUV:
if sys.platform.startswith("darwin"): if OSX:
FAILING_TESTS += [ 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