Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set threshold to 1% #483

Merged
merged 3 commits into from
Oct 13, 2023
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
6 changes: 5 additions & 1 deletion .codecov.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Config can be validated before merging: curl -X POST --data-binary @codecov.yaml https://codecov.io/validate
# See http://docs.codecov.io/docs/coverage-configuration
coverage:
precision: 2 # 2 = xx.xx%, 0 = xx%
Expand All @@ -11,7 +12,10 @@ coverage:
status:
# project will give us the diff in the total code coverage between a commit
# and its parent
project: yes
project:
default:
# Allow the coverage to drop by 1% and posting a success status.
threshold: 1%
# Patch gives just the coverage of the patch
patch: yes
# changes tells us if there are unexpected code coverage changes in other files
Expand Down
Loading