blob: b526f2bf7de4f9bcfe0008fee4c7f5348f00e20e [file] [log] [blame]
Alex Gaynor814efab2013-10-03 09:24:58 -07001def pytest_generate_tests(metafunc):
Alex Gaynora20631d2013-10-16 14:17:36 -07002 from cryptography.bindings import _ALL_APIS
Alex Gaynor814efab2013-10-03 09:24:58 -07003
4 if "api" in metafunc.fixturenames:
Alex Gaynora20631d2013-10-16 14:17:36 -07005 metafunc.parametrize("api", _ALL_APIS)