-
Notifications
You must be signed in to change notification settings - Fork 172
/
codecov.yml
32 lines (31 loc) · 1.09 KB
/
codecov.yml
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
coverage:
# Commit status https://docs.codecov.io/docs/commit-status are used
# to block PR based on coverage threshold.
status:
project:
default:
target: auto
threshold: 0%
patch:
default:
informational: true
ignore:
# Configure what to ignore.
- "pkg/mock/**/*" # - Testing mock.
# Ignore non-deterministic methods and tests
# codecov might report unexpected changes even if no code has been changed.
# see https://community.codecov.com/t/reported-change-in-coverage-when-no-code-changes-made/1346
# and https://github.com/crate/crate/issues/10824
# and https://docs.codecov.com/docs/unexpected-coverage-changes
- "pkg/filter/network/tcpcopy/persistence"
- "pkg/filter/network/tcpcopy/strategy"
- "pkg/grpc/dapr/proto/common/v1"
- "pkg/grpc/dapr/proto/runtime/v1"
- "pkg/grpc/dapr/dapr_api_unimplement.go"
- "pkg/wasm/watcher.go"
- "cmd/**/*"
- "components/lock/consul/consul_lock_task.go"
- "components/rpc/invoker/mosn/channel/xchannel.go"
- "diagnostics/**/*"
- "components/pkg/mock/**/*"
- "**/*_generated.go"