Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
3e72a338
Commit
3e72a338
authored
Apr 17, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New failing test on PyPy+Win.
parent
2bda6d1f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
src/gevent/testing/patched_tests_setup.py
src/gevent/testing/patched_tests_setup.py
+13
-7
No files found.
src/gevent/testing/patched_tests_setup.py
View file @
3e72a338
...
@@ -164,14 +164,15 @@ disabled_tests = [
...
@@ -164,14 +164,15 @@ disabled_tests = [
# the file to a temp location during patching.
# the file to a temp location during patching.
'test_asyncore.HelperFunctionTests.test_compact_traceback'
,
'test_asyncore.HelperFunctionTests.test_compact_traceback'
,
'test_signal.WakeupSignalTests.test_wakeup_fd_early'
,
# expects time.sleep() to return prematurely in case of a signal;
# expects time.sleep() to return prematurely in case of a signal;
# gevent.sleep() is better than that and does not get interrupted (unless signal handler raises an error)
# gevent.sleep() is better than that and does not get interrupted
# (unless signal handler raises an error)
'test_signal.WakeupSignalTests.test_wakeup_fd_early'
,
# expects select.select() to raise select.error(EINTR'interrupted
# system call') gevent.select.select() does not get interrupted
# (unless signal handler raises an error) maybe it should?
'test_signal.WakeupSignalTests.test_wakeup_fd_during'
,
'test_signal.WakeupSignalTests.test_wakeup_fd_during'
,
# expects select.select() to raise select.error(EINTR'interrupted system call')
# gevent.select.select() does not get interrupted (unless signal handler raises an error)
# maybe it should?
'test_signal.SiginterruptTest.test_without_siginterrupt'
,
'test_signal.SiginterruptTest.test_without_siginterrupt'
,
'test_signal.SiginterruptTest.test_siginterrupt_on'
,
'test_signal.SiginterruptTest.test_siginterrupt_on'
,
...
@@ -709,8 +710,13 @@ if PYPY:
...
@@ -709,8 +710,13 @@ if PYPY:
# These are flaxy, apparently a race condition? Began with PyPy 2.7-7 and 3.6-7
# These are flaxy, apparently a race condition? Began with PyPy 2.7-7 and 3.6-7
'test_asyncore.TestAPI_UsePoll.test_handle_error'
,
'test_asyncore.TestAPI_UsePoll.test_handle_error'
,
'test_asyncore.TestAPI_UsePoll.test_handle_read'
,
'test_asyncore.TestAPI_UsePoll.test_handle_read'
,
]
if
WIN
:
disabled_tests
+=
[
# Starting in 7.3.1 on Windows, this stopped raising ValueError; it appears to
# be a bug in PyPy.
'test_signal.WakeupFDTests.test_invalid_fd'
,
]
]
if
PY36
:
if
PY36
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment