Alex Gaynor | 814efab | 2013-10-03 09:24:58 -0700 | [diff] [blame] | 1 | def pytest_generate_tests(metafunc): |
Donald Stufft | ce0d781 | 2013-10-27 16:52:33 -0400 | [diff] [blame^] | 2 | from cryptography.hazmat.bindings import _ALL_BACKENDS |
Alex Gaynor | 814efab | 2013-10-03 09:24:58 -0700 | [diff] [blame] | 3 | |
Paul Kehrer | db37d0e | 2013-10-22 20:13:06 -0500 | [diff] [blame] | 4 | if "backend" in metafunc.fixturenames: |
5 | metafunc.parametrize("backend", _ALL_BACKENDS) |