llama-stack-mirror/.coveragerc
Sébastien Han c71006f9cc
chore: exclude test, provider, and template directories from coverage
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>
2025-04-25 14:14:29 +02:00

6 lines
99 B
INI

[run]
omit =
*/tests/*
*/llama_stack/providers/*
*/llama_stack/templates/*
.venv/*