-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from tobac-project/update_codecov_yml
Updates to codecov configuration
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[run] | ||
source=tobac | ||
omit = tobac/tests/* | ||
omit = | ||
tobac/tests/* | ||
setup.py |
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
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,22 @@ | ||
# Codecov.io settings | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
# basic settings | ||
# auto target means look at deltas from previous | ||
target: auto | ||
# Threshold we can drop coverage before failing CI | ||
threshold: 1% | ||
base: auto | ||
flags: | ||
- unit | ||
paths: | ||
- "tobac" | ||
|
||
# what folders and files to ignore | ||
ignore: | ||
- "tobac/tests/.*" | ||
- "setup.py" | ||
|