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