-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure codecov to ignore tests folder (#362)
* Configure codecov to ignore tests folder * Use codecov token to avoid rate limiting * Decrease coverage target for now
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: 75 | ||
threshold: 0.1 | ||
patch: | ||
default: | ||
target: 75 | ||
comment: | ||
layout: "diff, files" | ||
behavior: default | ||
require_changes: true # if true: only post the comment if coverage changes | ||
branches: # branch names that can post comment | ||
- "main" | ||
ignore: | ||
- "virtualizarr/tests" # ignore folders and all its contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,3 +58,4 @@ jobs: | |
env_vars: OS,PYTHON | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
token: ${{ secrets.CODECOV_TOKEN }} |