feat: allow using llama-stack-library-client from verifications

This commit is contained in:
Ashwin Bharambe 2025-05-22 20:21:47 -07:00
parent 558d109ab7
commit 98320d4eb2
3 changed files with 31 additions and 7 deletions

View file

@ -16,6 +16,11 @@ def pytest_generate_tests(metafunc):
metafunc.parametrize("model", [])
return
model = metafunc.config.getoption("model")
if model:
metafunc.parametrize("model", [model])
return
try:
config_data = _load_all_verification_configs()
except (OSError, FileNotFoundError) as e: