-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy path.testcoverage.yaml
50 lines (43 loc) · 1.74 KB
/
.testcoverage.yaml
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
46
47
48
49
50
# (mandatory)
# Path to coverprofile file (output of `go test -coverprofile` command)
profile: build/test/coverage.out
# (optional)
# When specified reported file paths will not contain local prefix in the output
local-prefix: "github.com/nginx/agent/v3"
# Holds coverage thresholds percentages, values should be in range [0-100]
threshold:
# (optional; default 0)
# The minimum coverage that each file should have
# file: 70
# (optional; default 0)
# The minimum coverage that each package should have
package: 80
# (optional; default 0)
# The minimum total coverage project should have
total: 80
# Holds regexp rules which will override thresholds for matched files or packages using their paths.
#
# First rule from this list that matches file or package is going to apply new threshold to it.
# If project has multiple rules that match same path, override rules should be listed in order from
# specific to more general rules.
#override:
# Increase coverage threshold to 100% for `foo` package (default is 80, as configured above)
# - threshold: 100
# path: ^pkg/lib/foo$
# Holds regexp rules which will exclude matched files or packages from coverage statistics
exclude:
# Exclude files or packages matching their paths
paths:
- \.pb\.go$ # Excludes all protobuf generated files
- \.gen\.go # Excludes generated files
- ^fake_.*\.go # Excludes fakes
- ^test/.*$
- app.go # app.go and main.go should be tested by integration tests.
- main.go
# ignore wrappers around gopsutil
- internal/datasource/host
- internal/watcher/process
- pkg/nginxprocess
# NOTES:
# - symbol `/` in all path regexps will be replaced by
# current OS file path separator to properly work on Windows