elvish/.codecov.yml
Qi Xiao 6685c15981 Actually, continue to exclude test helpers.
Test helpers will necessarily contain some lines that are only executed on test
failure, so exluding them from test coverage is still a good idea.

Also exclude pkg/web.
2021-01-16 06:42:27 +00:00

17 lines
359 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"
# The web UI is not being worked on now, also exclude it.
- "pkg/web"