mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-16 12:29:26 +00:00
feat(tests): allow cleanup of stray artifacts for local integration test runs
This commit is contained in:
parent
05a62a6ffb
commit
a0e6c8d383
3 changed files with 65 additions and 2 deletions
|
|
@ -138,6 +138,11 @@ def pytest_addoption(parser):
|
|||
),
|
||||
)
|
||||
parser.addoption("--env", action="append", help="Set environment variables, e.g. --env KEY=value")
|
||||
parser.addoption(
|
||||
"--clean-artifacts",
|
||||
action="store_true",
|
||||
help="Clean up all artifacts (databases, logs, batch input/output files) after test execution",
|
||||
)
|
||||
parser.addoption(
|
||||
"--text-model",
|
||||
help="comma-separated list of text models. Fixture name: text_model_id",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue