mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-28 04:51:59 +00:00
Introduce a `.coveragerc` file to omit: - test files (*/tests/*) - provider code (*/llama_stack/providers/*) - template files (*/llama_stack/templates/*) - virtual environment (.venv/*) This ensures coverage reports focus on core application logic (API and CLI). Signed-off-by: Sébastien Han <seb@redhat.com>
6 lines
99 B
INI
6 lines
99 B
INI
[run]
|
|
omit =
|
|
*/tests/*
|
|
*/llama_stack/providers/*
|
|
*/llama_stack/templates/*
|
|
.venv/*
|