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