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