-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/TMC
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Reference docs at: | ||
# https://docs.codecov.io/docs/codecovyml-reference | ||
|
||
codecov: | ||
require_ci_to_pass: yes | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "70...100" | ||
status: | ||
project: | ||
default: | ||
# check only master and branches that should be merged directly into | ||
# master | ||
branches: | ||
- master | ||
- "feature/*" | ||
- "release/*" | ||
|
||
parsers: | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
|
||
comment: | ||
layout: "reach,diff,flags,tree" | ||
behavior: default | ||
require_changes: no | ||
# comments in the pull request are not preventing the merge, and can be | ||
# useful to detect dropping in unit and regression tests since they are | ||
# individually reported [so keep the following option commented] | ||
#branches: | ||
#- master | ||
#- "feature/*" | ||
#- "release/*" |