rustframe/codecov.yml
2025-04-19 21:13:05 +01:00

18 lines
655 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

coverage:
status:
# Project coverage status: require ≥ 90% overall, allow up to 2% drop
project:
default:
target: 90% # overall coverage goal
threshold: 2% # tolerable drop below target before failing
base: auto # compare against default branch
only_pulls: true # enforce on PRs only
# Patch coverage status: require ≥ 95% on new/changed lines, zero tolerance
patch:
default:
target: 95% # coverage goal for new or changed code
threshold: 0% # no uncovered lines allowed
base: auto # diff against default branch
only_pulls: true