33bb8ea
diff --git a/tests/conftest.py b/tests/conftest.py
33bb8ea
index cd64a76..1d5ddbb 100644
33bb8ea
--- a/tests/conftest.py
33bb8ea
+++ b/tests/conftest.py
33bb8ea
@@ -14,11 +14,23 @@ def prepare_url(value):
33bb8ea
     return inner
33bb8ea
 
33bb8ea
 
33bb8ea
-@pytest.fixture
33bb8ea
-def httpbin(httpbin):
33bb8ea
-    return prepare_url(httpbin)
33bb8ea
+import sys
33bb8ea
 
33bb8ea
+if sys.version_info[0] < 3:
33bb8ea
+    @pytest.fixture
33bb8ea
+    def httpbin():
33bb8ea
+        pytest.skip('No httpbin for Python 2')
33bb8ea
 
33bb8ea
-@pytest.fixture
33bb8ea
-def httpbin_secure(httpbin_secure):
33bb8ea
-    return prepare_url(httpbin_secure)
33bb8ea
+    @pytest.fixture
33bb8ea
+    def httpbin_secure():
33bb8ea
+        pytest.skip('No httpbin for Python 2')
33bb8ea
+
33bb8ea
+else:
33bb8ea
+    @pytest.fixture
33bb8ea
+    def httpbin(httpbin):
33bb8ea
+        return prepare_url(httpbin)
33bb8ea
+
33bb8ea
+
33bb8ea
+    @pytest.fixture
33bb8ea
+    def httpbin_secure(httpbin_secure):
33bb8ea
+        return prepare_url(httpbin_secure)