-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
codecov.yml
35 lines (29 loc) · 941 Bytes
/
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
33
34
35
# Configuration for CodeCov.
# To verify, run:
# curl -X POST --data-binary @codecov.yml https://codecov.io/validate
comment: false # do not comment PR with the result
github_checks:
annotations: false
coverage:
range: 50..90 # coverage lower than 50 is red, higher than 90 green, between color code
status:
project: # settings affecting project coverage
default:
enabled: true
target: auto
threshold: 1000% # high threshold to avoid transient failure
patch:
default:
enabled: true
target: auto
threshold: 1000% # high threshold to avoid transient failure
changes: false # do not run coverage on changes
ignore: ['**/org/lflang/services/**',
'**/org/lflang/lf/**',
'**/org/lflang/ide/**',
'**/org/lflang/serializer/**',
'**/org/lflang/parser/antlr/**']
codecov:
require_ci_to_pass: true
notify:
wait_for_ci: true