(backend, subtests, pytestconfig, path)
| 11 | def wrapper(func): |
| 12 | @pytest.mark.parametrize("path", paths) |
| 13 | def run_wycheproof(backend, subtests, pytestconfig, path): |
| 14 | wycheproof_root = pytestconfig.getoption( |
| 15 | "--wycheproof-root", skip=True |
| 16 | ) |
| 17 | for test in load_wycheproof_tests(wycheproof_root, path, subdir): |
| 18 | with subtests.test(): |
| 19 | func(backend, test) |
| 20 | |
| 21 | return run_wycheproof |
| 22 |
nothing calls this directly
no test coverage detected