cryptography/tests/conftest.py
2013-10-28 08:37:33 -04:00

5 lines
195 B
Python

def pytest_generate_tests(metafunc):
from cryptography.hazmat.bindings import _ALL_BACKENDS
if "backend" in metafunc.fixturenames:
metafunc.parametrize("backend", _ALL_BACKENDS)