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
2686eb89
Commit
2686eb89
authored
Nov 07, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two SSL tests that need to be disabled.
parent
9f51fbd9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
Makefile
Makefile
+1
-1
src/greentest/greentest/patched_tests_setup.py
src/greentest/greentest/patched_tests_setup.py
+14
-0
No files found.
Makefile
View file @
2686eb89
...
...
@@ -194,7 +194,7 @@ test-py35: $(PY35)
PYTHON
=
python3.5.5
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5.5/bin:
$(PATH)
make develop basictest
test-py36
:
$(PY36)
PYTHON
=
python3.6.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.7/bin:
$(PATH)
make develop lint
allbackend
test
PYTHON
=
python3.6.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.7/bin:
$(PATH)
make develop lint
basic
test
test-py37
:
$(PY37)
LD_LIBRARY_PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.1/openssl/lib
PYTHON
=
python3.7.1
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.1/bin:
$(PATH)
make develop leaktest cffibackendtest coverage_combine
...
...
src/greentest/greentest/patched_tests_setup.py
View file @
2686eb89
...
...
@@ -495,6 +495,20 @@ if RUN_COVERAGE and CFFI_BACKEND:
'test_signal.InterProcessSignalTests.test_main'
,
]
if
PY2
:
if
TRAVIS
:
disabled_tests
+=
[
# When we moved to group:travis_latest and dist:xenial,
# this started returning a value (33554432L) != 0; presumably
# because of updated SSL library? Only on CPython.
'test_ssl.ContextTests.test_options'
,
# When we moved to group:travis_latest and dist:xenial,
# one of the values used started *working* when it was expected to fail.
# The list of values and systems is long and complex, so
# presumably something needs to be updated. Only on PyPy.
'test_ssl.ThreadedTests.test_alpn_protocols'
,
]
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