blob: fab40b1424e07eb69344cf9da0277c9745acd8ab [file] [log] [blame]
Alex Gaynor814efab2013-10-03 09:24:58 -07001def pytest_generate_tests(metafunc):
Donald Stufftce0d7812013-10-27 16:52:33 -04002 from cryptography.hazmat.bindings 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)