mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
# What does this PR do? 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). Note: I'm opening this for discussing as well - we might decide to ignore more and or re-add some directories! 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/*
|