forked from seqan/seqan3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codecov.yml
18 lines (17 loc) · 952 Bytes
/
.codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# See https://docs.codecov.io/docs/codecovyml-reference
codecov:
require_ci_to_pass: no # codecov reports its results independent of whether CI passed
notify:
wait_for_ci: no # codecov has not to wait until the CI is finished to post its results
coverage:
status:
project: # project is the overall code coverage of the whole codebase
default:
if_ci_failed: success # per default, codecov would fail if any CI fails
target: auto # the target coverage, usually the code coverage of the base-branch
threshold: 0.02% # codecov/project fails if there is a drop of more than 0.02%
patch: # patch is the code-coverage of the changed lines in the PR
default:
if_ci_failed: success # per default, codecov would fail if any CI fails
informational: true # the codecov/patch status is never "fail"
only_pulls: true # only post codecov/patch status on PRs