-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
32 lines (27 loc) · 1.06 KB
/
codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# See https://docs.codecov.com/docs/codecovyml-reference for details on yml properties and their usage/meaning.
codecov:
require_ci_to_pass: yes # Whether or not codecov should wait for all other statuses to pass.
coverage:
precision: 2 # Precision used when displaying coverage percentages.
round: down
range: "75...100" # Range of coverage value that gets a green status color.
status:
project:
default:
target: 75% # the required coverage value
threshold: 1% # the leniency in hitting the target
# Using parser config from default codecov.yml file.
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
# Configuration for pull request comments.
comment:
layout: "reach,diff,files,footer" # https://docs.codecov.com/docs/pull-request-comments#layout
behavior: default # update, if exists. Otherwise post new comment.
require_changes: no # if true: only post the comment if coverage changes
ignore:
- "Tests/**" # Ignore actual test files from being included in test reports.