elvish/.codecov.yml
Qi Xiao 72fc2dbe4a Copy and trim down the net/rpc package.
In particular, the dependency on net/http is removed, which removes a
bunch of transitive dependencies.
2021-01-30 23:56:58 +00:00

19 lines
409 B
YAML

coverage:
status:
project:
default:
threshold: 0.1%
patch: off
comment: false
ignore:
# Exclude test helpers from coverage calculation.
- "pkg/cli/clitest"
- "pkg/eval/evaltest"
- "pkg/prog/progtest"
- "pkg/store/storetest"
- "pkg/testutil/must.go"
# Exclude the copied rpc package.
- "pkg/rpc"
# The web UI is not being worked on now, also exclude it.
- "pkg/web"