Files
rtabmap/codecov.yml

34 lines
1.1 KiB
YAML
Raw Normal View History

2026-08-07 15:23:58 -07:00
# Codecov configuration -- https://docs.codecov.com/docs/codecov-yaml
#
# 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
# 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
range: "10...90" # red/green scale: 10% is fully red, 90% fully green
2026-08-07 15:23:58 -07:00
status:
# Catch a slow slide down without pinning an absolute number.
2026-08-07 15:23:58 -07:00
project:
default:
target: auto
threshold: 1%
# 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
require_changes: true # stay quiet when coverage doesn't move