-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecov.yml
More file actions
41 lines (37 loc) · 893 Bytes
/
codecov.yml
File metadata and controls
41 lines (37 loc) · 893 Bytes
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
# Codecov configuration
# https://docs.codecov.com/docs/codecovyml-reference
coverage:
precision: 2
round: down
range: "60...100"
status:
project:
default:
# Don't fail CI on coverage changes
informational: true
target: auto
threshold: 1%
patch:
default:
# Don't fail CI on patch coverage
informational: true
target: auto
threshold: 1%
comment:
layout: "reach,diff,flags,files"
behavior: default
require_changes: true
ignore:
# Ignore generated files
- "**/*_generated.go"
- "**/*.pb.go"
# Ignore test files in coverage report
- "**/*_test.go"
# Ignore cmd entry points (minimal code)
- "cmd/**/*"
# Ignore integration tests
- "integration/**/*"
# Ignore platform-specific stubs (darwin)
- "**/*_darwin.go"
# Ignore API service protobuf files
- "api/services/**/*"