aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-23 11:34:10 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-23 11:34:10 -0700
commit2607ab5b932395de6554f1f4a779481cd4b87619 (patch)
tree520227c80ad54ebb22670c7b663aaf9546c2e093 /tests/conftest.py
parent276ba5a1bc161954271e40c24ad44c83719b10e3 (diff)
downloadcryptography-2607ab5b932395de6554f1f4a779481cd4b87619.tar.gz
cryptography-2607ab5b932395de6554f1f4a779481cd4b87619.tar.bz2
cryptography-2607ab5b932395de6554f1f4a779481cd4b87619.zip
public API only
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 41cc227f..20926024 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -33,7 +33,7 @@ def pytest_runtest_setup(item):
required = item.keywords.get("requires_backend_interface")
if required is not None and "backend" in item.funcargs:
required_interfaces = tuple(
- kwargs["interface"] for args, kwargs in required._arglist
+ mark.kwargs["interface"] for mark in required
)
if not isinstance(item.funcargs["backend"], required_interfaces):
pytest.skip("{0} backend does not support {1}".format(