2019-03-15 23:10:20 +03:00
|
|
|
# https://docs.codecov.io/docs/codecov-yaml
|
|
|
|
# https://github.com/codecov/support/wiki/Codecov-Yaml
|
|
|
|
|
|
|
|
coverage:
|
2019-03-19 00:44:24 +03:00
|
|
|
range: 20..80 # 20 is red, 80 is green
|
|
|
|
round: down # always round down
|
|
|
|
precision: 5 # highest level of decimal precision
|
2019-03-15 23:10:20 +03:00
|
|
|
status:
|
|
|
|
project:
|
|
|
|
default: false
|
|
|
|
patch:
|
|
|
|
default: false
|
|
|
|
fixes:
|
|
|
|
- "eng/::/"
|
|
|
|
|
|
|
|
comment:
|
2019-03-19 00:44:24 +03:00
|
|
|
layout: "diff, flags" # coverage difference, flags below
|
2019-03-15 23:10:20 +03:00
|
|
|
|
2019-03-19 00:44:24 +03:00
|
|
|
flags: # which files to include in the reporting
|
2019-03-15 23:10:20 +03:00
|
|
|
production:
|
|
|
|
paths:
|
|
|
|
- src/Common/src/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/Microsoft.VisualBasic/src/
|
|
|
|
- src/Microsoft.VisualBasic.Forms/src/
|
|
|
|
- src/System.Drawing.Common/src/
|
2019-03-15 23:10:20 +03:00
|
|
|
- src/System.Drawing.Design/src/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/System.Private.Windows.Core/src/
|
2019-03-15 23:10:20 +03:00
|
|
|
- src/System.Windows.Forms/src/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/System.Windows.Forms.Analyzers/src/
|
|
|
|
- src/System.Windows.Forms.Analyzers.CSharp/src/
|
2019-03-15 23:10:20 +03:00
|
|
|
- src/System.Windows.Forms.Design/src/
|
|
|
|
- src/System.Windows.Forms.Design.Editors/src/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/System.Windows.Forms.Primitives/src/
|
|
|
|
- src/System.Windows.Forms.PrivateSourceGenerators/src/
|
2019-03-15 23:10:20 +03:00
|
|
|
test:
|
|
|
|
paths:
|
|
|
|
- src/Common/tests/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/Microsoft.VisualBasic/tests/
|
|
|
|
- src/Microsoft.VisualBasic.Forms/tests/
|
|
|
|
- src/System.Drawing.Common/tests/
|
2019-03-15 23:10:20 +03:00
|
|
|
- src/System.Windows.Forms/tests/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/System.Windows.Forms.Analyzers/tests/
|
|
|
|
- src/System.Windows.Forms.Analyzers.CSharp/tests/
|
2019-03-15 23:10:20 +03:00
|
|
|
- src/System.Windows.Forms.Design/tests/
|
2024-01-10 07:36:32 +03:00
|
|
|
- src/System.Windows.Forms.Primitives/tests/
|
|
|
|
- src/System.Windows.Forms.PrivateSourceGenerators/tests/
|