codeflash/.coveragerc
Kevin Turcios 0232d84a7d fix: exclude test_tracer.py from coverage run and lower floor to 58%
pytest-cov's trace function conflicts with the Tracer class under test,
causing it to self-disable in CI. Linux also reports ~1% lower coverage
than macOS due to platform-specific branches.
2026-04-23 03:04:49 -05:00

17 lines
248 B
INI

[run]
branch = true
source = codeflash
omit =
codeflash/version.py
[report]
sort = cover
show_missing = true
fail_under = 58
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
if __name__ == .__main__.:
[html]
directory = htmlcov