2026-08-07 15:23:58 -07:00
|
|
|
# Codecov configuration -- https://docs.codecov.com/docs/codecov-yaml
|
|
|
|
|
#
|
2026-08-07 20:48:41 -07:00
|
|
|
# Coverage data is produced by .github/workflows/coverage.yml (lcov over a Debug
|
|
|
|
|
# build with ENABLE_COVERAGE=ON) and uploaded by codecov/codecov-action; this
|
|
|
|
|
# file only controls what Codecov reports back on a pull request. Nothing is
|
|
|
|
|
# posted unless the Codecov GitHub App has access to the repository.
|
2026-08-07 15:23:58 -07:00
|
|
|
|
2026-08-07 20:48:41 -07:00
|
|
|
# Mark uncovered added lines inline in the "Files changed" tab.
|
2026-08-07 15:23:58 -07:00
|
|
|
github_checks:
|
|
|
|
|
annotations: true
|
|
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
|
precision: 2
|
|
|
|
|
round: down
|
2026-08-07 20:48:41 -07:00
|
|
|
range: "10...90" # red/green scale: 10% is fully red, 90% fully green
|
2026-08-07 15:23:58 -07:00
|
|
|
|
|
|
|
|
status:
|
2026-08-07 20:48:41 -07:00
|
|
|
# Catch a slow slide down without pinning an absolute number.
|
2026-08-07 15:23:58 -07:00
|
|
|
project:
|
|
|
|
|
default:
|
|
|
|
|
target: auto
|
|
|
|
|
threshold: 1%
|
|
|
|
|
|
2026-08-07 20:48:41 -07:00
|
|
|
# Coverage of the lines this pull request touches. Advisory: reported, but
|
|
|
|
|
# does not block the merge -- drop "informational" to make it gate.
|
2026-08-07 15:23:58 -07:00
|
|
|
patch:
|
|
|
|
|
default:
|
|
|
|
|
informational: true
|
|
|
|
|
|
|
|
|
|
comment:
|
|
|
|
|
layout: "condensed_header, diff, files"
|
|
|
|
|
behavior: default
|
2026-08-07 20:48:41 -07:00
|
|
|
require_changes: true # stay quiet when coverage doesn't move
|