Commit 2686eb89 authored by Jason Madden's avatar Jason Madden

Two SSL tests that need to be disabled.

parent 9f51fbd9
......@@ -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 allbackendtest
PYTHON=python3.6.7 PATH=$(BUILD_RUNTIMES)/versions/python3.6.7/bin:$(PATH) make develop lint basictest
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
......
......@@ -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():
......
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