mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 01:47:51 +08:00
6685c15981
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.
17 lines
359 B
YAML
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"
|