Temporarily skip SSL tests on PyPy due to #308

This commit is contained in:
Jakub Roztocil 2015-02-14 23:14:06 +01:00
parent dd0a4ab87a
commit 985f65ef52
2 changed files with 8 additions and 1 deletions

View File

@ -4,7 +4,7 @@ Python 2.6, 2.7, and 3.x compatibility.
"""
# Borrow these from requests:
# noinspection PyUnresolvedReferences
from requests.compat import is_windows, bytes, str, is_py3, is_py26
from requests.compat import is_windows, bytes, str, is_py3, is_py26, is_pypy
try: # pragma: no cover
# noinspection PyUnresolvedReferences,PyCompatibility

View File

@ -5,6 +5,7 @@ import pytest_httpbin.certs
from requests.exceptions import SSLError
from httpie import ExitStatus
from httpie.compat import is_pypy
from utils import http, HTTP_OK, TESTS_ROOT
@ -18,6 +19,9 @@ CLIENT_PEM = os.path.join(TESTS_ROOT, 'client_certs', 'client.pem')
CA_BUNDLE = pytest_httpbin.certs.where()
@pytest.mark.skipif(
is_pypy,
reason='https://github.com/jakubroztocil/httpie/issues/308')
class TestClientSSLCertHandling(object):
def test_cert_file_not_found(self, httpbin_secure):
@ -54,6 +58,9 @@ class TestClientSSLCertHandling(object):
assert HTTP_OK in r
@pytest.mark.skipif(
is_pypy,
reason='https://github.com/jakubroztocil/httpie/issues/308')
class TestServerSSLCertHandling(object):
def test_self_signed_server_cert_by_default_raises_ssl_error(