mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
Make it a hidden file. From the [CodeCov docs][1]: > Can I name the file .codecov.yml? > > Yes, you can name the file `codecov.yml` or `.codecov.yml`. However, the > file must still be located in the repository root, `dev/`, or `.github/` > directories [1]: https://docs.codecov.com/docs/codecov-yaml#can-i-name-the-file-codecovyml Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
437 B
YAML
20 lines
437 B
YAML
comment:
|
|
layout: header, changes, diff, sunburst
|
|
coverage:
|
|
status:
|
|
patch:
|
|
default:
|
|
target: 50%
|
|
only_pulls: true
|
|
# project will give us the diff in the total code coverage between a commit
|
|
# and its parent
|
|
project:
|
|
default:
|
|
target: auto
|
|
threshold: "15%"
|
|
changes: false
|
|
ignore:
|
|
- "**/internal/test"
|
|
- "vendor/*"
|
|
- "cli/compose/schema/bindata.go"
|
|
- ".*generated.*" |