File tree Expand file tree Collapse file tree 1 file changed +15
-11
lines changed
Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -14,24 +14,28 @@ coverage:
1414 # The minimum required coverage value for the project
1515 target : 80%
1616
17- # PR-level coverage settings
17+ # The allowed coverage decrease before failing the status check
18+ threshold : 0%
19+
20+ # Patch-level coverage settings
1821 patch :
1922
2023 default :
2124
2225 target : 80%
26+ threshold : 0%
2327
2428# Ignore files or packages matching their paths
2529ignore :
26- - " \. pb\. go$" # Excludes all protobuf generated files
27- - " \. gen\. go" # Excludes generated files
28- - " ^fake_.*\. go" # Excludes fakes
29- - " ^test/.*$"
30- - " app.go" # app.go and main.go should be tested by integration tests.
31- - " main.go"
30+ - ' \.pb\.go$' # Excludes all protobuf generated files
31+ - ' \.gen\.go' # Excludes generated files
32+ - ' ^fake_.*\.go' # Excludes fakes
33+ - ' ^test/.*$'
34+ - ' app.go' # app.go and main.go should be tested by integration tests.
35+ - ' main.go'
3236 # ignore metadata generated files
33- - " metadata/generated_.*\. go"
37+ - ' metadata/generated_.*\.go'
3438 # ignore wrappers around gopsutil
35- - " internal/datasource/host"
36- - " internal/watcher/process"
37- - " pkg/nginxprocess"
39+ - ' internal/datasource/host'
40+ - ' internal/watcher/process'
41+ - ' pkg/nginxprocess'
You can’t perform that action at this time.
0 commit comments