You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
# 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.Private.Windows.GdiPlus/
|
|
- src/System.Windows.Forms/
|
|
- 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/test/unit/System.Windows.Forms/
|
|
- 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/
|