forked from phoenix-oss/llama-stack-mirror
chore: exclude test, provider, and template directories from coverage (#2028)
# 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>
This commit is contained in:
parent
1bb1d9b2ba
commit
1deab94ea0
1 changed files with 6 additions and 0 deletions
6
.coveragerc
Normal file
6
.coveragerc
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[run]
|
||||||
|
omit =
|
||||||
|
*/tests/*
|
||||||
|
*/llama_stack/providers/*
|
||||||
|
*/llama_stack/templates/*
|
||||||
|
.venv/*
|
Loading…
Add table
Add a link
Reference in a new issue