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

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