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
e5f46e55
Commit
e5f46e55
authored
Mar 21, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip some tests on Appveyor 2.7.15 now that we're on 2.7.16 tests.
parent
2ee91a76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
src/gevent/testing/patched_tests_setup.py
src/gevent/testing/patched_tests_setup.py
+16
-0
No files found.
src/gevent/testing/patched_tests_setup.py
View file @
e5f46e55
...
...
@@ -442,6 +442,9 @@ if LIBUV:
'test_smtplib.TooLongLineTests.testLineTooLong'
,
'test_smtplib.GeneralTests.testTimeoutValue'
,
# This sometimes crashes, which can't be our fault?
'test_ssl.BasicSocketTests.test_parse_cert_CVE_2019_5010'
,
]
if
PYPY
:
...
...
@@ -558,6 +561,19 @@ if PY2:
'test_urllib2_localnet.TestUrlopen.test_https_sni'
,
]
if
sys
.
version_info
[:
3
]
<
(
2
,
7
,
16
):
# We have 2.7.16 tests; older versions can fail
# to validate some SSL things or are missing important support functions
disabled_tests
+=
[
# Support functions
'test_thread.ThreadRunningTests.test_nt_and_posix_stack_size'
,
'test_thread.ThreadRunningTests.test_save_exception_state_on_error'
,
'test_thread.ThreadRunningTests.test_starting_threads'
,
'test_thread.BarrierTest.test_barrier'
,
# Broken SSL
'test_urllib2_localnet.TestUrlopen.test_https'
,
]
def
_make_run_with_original
(
mod_name
,
func_name
):
@
contextlib
.
contextmanager
def
with_orig
():
...
...
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