mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 15:53:13 +01:00
Temporarily skip SSL tests on PyPy due to #308
This commit is contained in:
parent
dd0a4ab87a
commit
985f65ef52
@ -4,7 +4,7 @@ Python 2.6, 2.7, and 3.x compatibility.
|
|||||||
"""
|
"""
|
||||||
# Borrow these from requests:
|
# Borrow these from requests:
|
||||||
# noinspection PyUnresolvedReferences
|
# 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
|
try: # pragma: no cover
|
||||||
# noinspection PyUnresolvedReferences,PyCompatibility
|
# noinspection PyUnresolvedReferences,PyCompatibility
|
||||||
|
@ -5,6 +5,7 @@ import pytest_httpbin.certs
|
|||||||
from requests.exceptions import SSLError
|
from requests.exceptions import SSLError
|
||||||
|
|
||||||
from httpie import ExitStatus
|
from httpie import ExitStatus
|
||||||
|
from httpie.compat import is_pypy
|
||||||
from utils import http, HTTP_OK, TESTS_ROOT
|
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()
|
CA_BUNDLE = pytest_httpbin.certs.where()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skipif(
|
||||||
|
is_pypy,
|
||||||
|
reason='https://github.com/jakubroztocil/httpie/issues/308')
|
||||||
class TestClientSSLCertHandling(object):
|
class TestClientSSLCertHandling(object):
|
||||||
|
|
||||||
def test_cert_file_not_found(self, httpbin_secure):
|
def test_cert_file_not_found(self, httpbin_secure):
|
||||||
@ -54,6 +58,9 @@ class TestClientSSLCertHandling(object):
|
|||||||
assert HTTP_OK in r
|
assert HTTP_OK in r
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skipif(
|
||||||
|
is_pypy,
|
||||||
|
reason='https://github.com/jakubroztocil/httpie/issues/308')
|
||||||
class TestServerSSLCertHandling(object):
|
class TestServerSSLCertHandling(object):
|
||||||
|
|
||||||
def test_self_signed_server_cert_by_default_raises_ssl_error(
|
def test_self_signed_server_cert_by_default_raises_ssl_error(
|
||||||
|
Loading…
Reference in New Issue
Block a user