forked from dotnet/winforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
39 lines (36 loc) · 1.29 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
33
34
35
36
37
38
39
# https://docs.codecov.io/docs/codecov-yaml
# https://github.com/codecov/support/wiki/Codecov-Yaml
coverage:
range: 20..80 # 20 is red, 80 is green
round: down # always round down
precision: 5 # highest level of decimal precision
status:
project:
default: false
patch:
default: false
fixes:
- "eng/::/"
comment:
layout: "diff, flags" # coverage difference, flags below
behavior: default # updates, if exists; otherwise post new
require_changes: false # post comment even if coverage does not change
require_head: yes # must have these two in order to post
require_base: yes
flags: # which files to include in the reporting
production:
paths:
- src/Common/src/
- src/System.Design/src/
- src/System.Drawing/src/
- src/System.Drawing.Design/src/
- src/System.Windows.Forms/src/
- src/System.Windows.Forms.Design/src/
- src/System.Windows.Forms.Design.Editors/src/
test:
paths:
- src/Common/tests/
- src/System.Drawing.Design/tests/
- src/System.Windows.Forms/tests/
- src/System.Windows.Forms.Design/tests/
- src/System.Windows.Forms.Design.Editors/tests/