f5eda6
From 650da6c0267ba711d9d02d2bba8d79540437055f Mon Sep 17 00:00:00 2001
f5eda6
From: Tomas Orsava <torsava@redhat.com>
f5eda6
Date: Wed, 13 Jun 2018 15:44:42 +0200
f5eda6
Subject: [PATCH] Skip all tests needing httpbin
f5eda6
f5eda6
httpbin has too many dependencies to be shipped in RHEL just for
f5eda6
build-time package tests
f5eda6
---
f5eda6
 tests/conftest.py | 6 ++++--
f5eda6
 1 file changed, 4 insertions(+), 2 deletions(-)
f5eda6
f5eda6
diff --git a/tests/conftest.py b/tests/conftest.py
f5eda6
index cd64a76..6cdc95a 100644
f5eda6
--- a/tests/conftest.py
f5eda6
+++ b/tests/conftest.py
f5eda6
@@ -15,10 +15,12 @@ def prepare_url(value):
f5eda6
 
f5eda6
 
f5eda6
 @pytest.fixture
f5eda6
-def httpbin(httpbin):
f5eda6
+def httpbin():
f5eda6
+    pytest.skip()
f5eda6
     return prepare_url(httpbin)
f5eda6
 
f5eda6
 
f5eda6
 @pytest.fixture
f5eda6
-def httpbin_secure(httpbin_secure):
f5eda6
+def httpbin_secure():
f5eda6
+    pytest.skip()
f5eda6
     return prepare_url(httpbin_secure)
f5eda6
-- 
f5eda6
2.14.4
f5eda6