Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,21 @@ codecov:
coverage:
status:
project:
default:
default: false # disable the default status that measures entire project
# examples: # declare a new status context "examples"
tests: # declare a new status context "tests"
# target: 100% # we always want 100% coverage here
paths:
- "tests/" # only include coverage in "tests/" folder
lib: # declare a new status context "lib"
paths:
- "!tests/" # remove all files in "tests/"
threshold: 1%
patch:
default:
target: auto
base: auto
threshold: 1%
comment:
require_changes: true
...