blob: 71662802b6504275ef75de9a394306c1b2226e22 [file] [log] [blame]
Alex Gaynor814efab2013-10-03 09:24:58 -07001def pytest_generate_tests(metafunc):
Alex Gaynorf8796b12013-12-13 20:28:55 -08002 from cryptography.hazmat.backends import _ALL_BACKENDS
Alex Gaynor814efab2013-10-03 09:24:58 -07003
Paul Kehrerdb37d0e2013-10-22 20:13:06 -05004 if "backend" in metafunc.fixturenames:
5 metafunc.parametrize("backend", _ALL_BACKENDS)