aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 5557ea85..bc5bc1ea 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -55,14 +55,6 @@ def select_backends(names, backend_list):
)
-def check_for_iface(name, iface, item):
- if name in item.keywords and "backend" in item.funcargs:
- if not isinstance(item.funcargs["backend"], iface):
- pytest.skip("{0} backend does not support {1}".format(
- item.funcargs["backend"], name
- ))
-
-
def check_backend_support(item):
supported = item.keywords.get("supported")
if supported and "backend" in item.funcargs: