-
Notifications
You must be signed in to change notification settings - Fork 982
/
codecov.yml
46 lines (43 loc) · 1.6 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
40
41
42
43
44
45
46
# 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
flags: # which files to include in the reporting
production:
paths:
- src/Common/src/
- src/Microsoft.VisualBasic/src/
- src/Microsoft.VisualBasic.Forms/src/
- src/System.Drawing.Common/src/
- src/System.Drawing.Design/src/
- src/System.Private.Windows.Core/src/
- src/System.Windows.Forms/src/
- src/System.Windows.Forms.Analyzers/src/
- src/System.Windows.Forms.Analyzers.CSharp/src/
- src/System.Windows.Forms.Design/src/
- src/System.Windows.Forms.Design.Editors/src/
- src/System.Windows.Forms.Primitives/src/
- src/System.Windows.Forms.PrivateSourceGenerators/src/
test:
paths:
- src/Common/tests/
- src/Microsoft.VisualBasic/tests/
- src/Microsoft.VisualBasic.Forms/tests/
- src/System.Drawing.Common/tests/
- src/System.Windows.Forms/tests/
- src/System.Windows.Forms.Analyzers/tests/
- src/System.Windows.Forms.Analyzers.CSharp/tests/
- src/System.Windows.Forms.Design/tests/
- src/System.Windows.Forms.Primitives/tests/
- src/System.Windows.Forms.PrivateSourceGenerators/tests/