diff options
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 31cdb634..41cc227f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -31,10 +31,7 @@ def pytest_generate_tests(metafunc): @pytest.mark.trylast def pytest_runtest_setup(item): required = item.keywords.get("requires_backend_interface") - if ( - required is not None and - "backend" in item.funcargs - ): + if required is not None and "backend" in item.funcargs: required_interfaces = tuple( kwargs["interface"] for args, kwargs in required._arglist ) |