aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 44e16a57..136b0607 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -25,15 +25,6 @@ KeyedHashVector = collections.namedtuple(
)
-def skip_if_empty(backend_list, required_interfaces):
- if not backend_list:
- pytest.skip(
- "No backends provided supply the interface: {0}".format(
- ", ".join(iface.__name__ for iface in required_interfaces)
- )
- )
-
-
def check_backend_support(item):
supported = item.keywords.get("supported")
if supported and "backend" in item.funcargs: