-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcodecov.yml
More file actions
45 lines (42 loc) · 747 Bytes
/
codecov.yml
File metadata and controls
45 lines (42 loc) · 747 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
42
43
44
45
codecov:
require_ci_to_pass: true
coverage:
status:
project:
default:
target: 0.90
threshold: 2%
paths:
- cmd/
- internal/
- pkg/
- api/
patch:
default:
target: 0.95
threshold: 1%
paths:
- cmd/
- internal/
- pkg/
- api/
comment:
layout: "reach, diff, flags, files"
behavior: default
require_changes: false
ignore:
- "**/*_test.go"
- "api/**/zz_generated.*.go"
- "**/*.deepcopy.go"
- "**/*.pb.go"
- "**/zz_generated.*.go"
- "**/mocks/**"
- "**/testdata/**"
- "test/**"
- "config/**"
- "docs/**"
- "examples/**"
- "bin/**"
- "hack/**"
- "*.md"
- "Makefile*"