mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
5 lines
195 B
Python
5 lines
195 B
Python
def pytest_generate_tests(metafunc):
|
|
from cryptography.hazmat.bindings import _ALL_BACKENDS
|
|
|
|
if "backend" in metafunc.fixturenames:
|
|
metafunc.parametrize("backend", _ALL_BACKENDS)
|