We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ebabf9 commit ed30f54Copy full SHA for ed30f54
1 file changed
.github/codecov.yml
@@ -5,13 +5,20 @@ comment:
5
6
coverage: # https://docs.codecov.com/docs/codecovyml-reference#coverage
7
precision: 5
8
- range:
9
- - 70.0
10
- - 75.0
+ range: "70...75"
11
status:
12
project:
13
default:
14
branches:
15
- ^master$
16
target: 70.0 # the minimum coverage ratio that the commit must meet to be considered a success.
17
- threshold: 1% # allow the coverage to drop by X%, and posting a success status.
+ threshold: 1% # allow the coverage to drop by X%, and posting a success status.
+ ignore:
+ - "**/test/**"
18
+ - "**/*Test.java"
19
+ - "**/*AuthCenter.java"
20
+ - "**/*QappPackage.java"
21
+ - "**/*TRPCProtocol.java"
22
+parsers:
23
+ jacoco:
24
+ partials_as_hits: true
0 commit comments