fix(tests): update coverage source path to src/llama_stack

The unit test script was still using --source=llama_stack for coverage,
which needed to be updated to --source=src/llama_stack after the src/
layout migration.
This commit is contained in:
Ashwin Bharambe 2025-10-27 11:40:49 -07:00
parent 3b80549e15
commit 3edfbf163a

View file

@ -27,4 +27,4 @@ fi
# Run unit tests with coverage
uv run --python "$PYTHON_VERSION" --with-editable . --group unit \
coverage run --source=llama_stack -m pytest -s -v tests/unit/ "$@"
coverage run --source=src/llama_stack -m pytest -s -v tests/unit/ "$@"