Alex Gaynor | 814efab | 2013-10-03 09:24:58 -0700 | [diff] [blame] | 1 | def pytest_generate_tests(metafunc): |
Alex Gaynor | f8796b1 | 2013-12-13 20:28:55 -0800 | [diff] [blame] | 2 | from cryptography.hazmat.backends 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) |