From 51c19cfe10af1f93453e90ccb6ea2efda6c04fab Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Sun, 15 Feb 2015 21:42:34 -0800 Subject: [PATCH] test_ssl.py: Remove skip failures on PyPy Revert 985f65e which skipped SSL tests that failed on PyPy because @kevin1024 fixed the problem in pytest-httpbin 0.0.6 (commit https://github.com/kevin1024/pytest-httpbin/commit/f38a3124465925d9a2cf8d07c43a597f109d11ea) --- tests/test_ssl.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_ssl.py b/tests/test_ssl.py index 2e303555..0fda4106 100644 --- a/tests/test_ssl.py +++ b/tests/test_ssl.py @@ -5,7 +5,6 @@ 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 @@ -19,9 +18,6 @@ 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): @@ -58,9 +54,6 @@ 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(