aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
blob: d2ba03def9312d4611463d3b32d6f1e36401d055 (plain)
1
2
3
4
5
def pytest_generate_tests(metafunc):
    from cryptography.bindings import _ALL_BACKENDS

    if "backend" in metafunc.fixturenames:
        metafunc.parametrize("backend", _ALL_BACKENDS)