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

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