From 08b6ce6b8c5d89de8d2df5ab7bd1f3970b0a7499 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 22 Feb 2015 22:01:10 +0100 Subject: [PATCH] That test is broken on PyPy too --- tests/utils/test_main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/utils/test_main.py b/tests/utils/test_main.py index 62ef97f..f4613b2 100644 --- a/tests/utils/test_main.py +++ b/tests/utils/test_main.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import os +import platform import stat import click @@ -201,7 +202,8 @@ def test_get_class_init_args_on_storage(): assert not required -@pytest.mark.skipif(not utils.compat.PY2, +@pytest.mark.skipif((not utils.compat.PY2 + or platform.python_implementation() == 'PyPy'), reason='https://github.com/shazow/urllib3/issues/529') def test_request_ssl(httpsserver): sha1 = '94:FD:7A:CB:50:75:A4:69:82:0A:F8:23:DF:07:FC:69:3E:CD:90:CA'