From 3edfbf163a8543c7dd19b5229e855b4b7d0e754e Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 27 Oct 2025 11:40:49 -0700 Subject: [PATCH] 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. --- scripts/unit-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unit-tests.sh b/scripts/unit-tests.sh index ff42d3039..481c6fc95 100755 --- a/scripts/unit-tests.sh +++ b/scripts/unit-tests.sh @@ -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/ "$@"