mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
- Add pytest-cov to dev dependencies - Add .coveragerc with branch coverage, 60% floor (current baseline), and source/omit configuration - Add coverage CI job (ubuntu/py3.13) that runs pytest with --cov, enforces the floor, and uploads coverage.xml as an artifact - Wire coverage into the required-checks-passed gate Closes #2080
17 lines
248 B
INI
17 lines
248 B
INI
[run]
|
|
branch = true
|
|
source = codeflash
|
|
omit =
|
|
codeflash/version.py
|
|
|
|
[report]
|
|
sort = cover
|
|
show_missing = true
|
|
fail_under = 60
|
|
exclude_lines =
|
|
pragma: no cover
|
|
if TYPE_CHECKING:
|
|
if __name__ == .__main__.:
|
|
|
|
[html]
|
|
directory = htmlcov
|