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
0ccd42ca
Commit
0ccd42ca
authored
Mar 21, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean run of PyPy3.6-7 locally.
parent
6256cbe7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
3 deletions
+34
-3
src/gevent/testing/patched_tests_setup.py
src/gevent/testing/patched_tests_setup.py
+34
-3
No files found.
src/gevent/testing/patched_tests_setup.py
View file @
0ccd42ca
...
...
@@ -244,9 +244,6 @@ if PY2 and PYPY:
'test_httpservers.CGIHTTPServerTestCase.test_query_with_multiple_question_mark'
,
'test_httpservers.CGIHTTPServerTestCase.test_os_environ_is_not_altered'
,
# These are flaxy, apparently a race condition? Began with PyPy 2.7-7
'test_asyncore.TestAPI_UsePoll.test_handle_error'
,
'test_asyncore.TestAPI_UsePoll.test_handle_read'
,
# This one sometimes results on connection refused
'test_urllib2_localnet.TestUrlopen.test_info'
,
# Sometimes hangs
...
...
@@ -667,6 +664,40 @@ if PYPY:
# On some platforms, this returns "zlib_compression", but the test is looking for
# "ZLIB"
'test_ssl.ThreadedTests.test_compression'
,
# 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_read'
,
]
if
PY36
:
disabled_tests
+=
[
# These are flaky, begining in 3.6-alpha 7.0, not finding some flag
# set, apparently a race condition
'test_asyncore.TestAPI_UveIPv6Poll.test_handle_accept'
,
'test_asyncore.TestAPI_UveIPv6Poll.test_handle_accepted'
,
'test_asyncore.TestAPI_UveIPv6Poll.test_handle_close'
,
'test_asyncore.TestAPI_UveIPv6Poll.test_handle_write'
,
'test_asyncore.TestAPI_UseIPV6Select.test_handle_read'
,
# These are reporting 'ssl has no attribute ...'
# This could just be an OSX thing
'test_ssl.ContextTests.test__create_stdlib_context'
,
'test_ssl.ContextTests.test_create_default_context'
,
'test_ssl.ContextTests.test_get_ciphers'
,
'test_ssl.ContextTests.test_options'
,
'test_ssl.ContextTests.test_constants'
,
# These tend to hang for some reason, probably not properly
# closed sockets.
'test_socketserver.SocketServerTest.test_write'
,
# This uses ctypes to do funky things including using ptrace,
# it hangs
'test_subprocess.ProcessTestcase.test_child_terminated_in_stopped_state'
,
]
# Generic Python 3
...
...
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