forked from PythonOT/POT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRG] Codecov options + remove 2.7 (PythonOT#178)
* cleanup setup * Ignore files in codecov * Remove externals module * change name to compile_args * bye py2.7 (you will be missed) * glob to ignore folders
- Loading branch information
1 parent
37456eb
commit ad04f50
Showing
7 changed files
with
100 additions
and
899 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,16 +1,47 @@ | ||
# Docs ref: https://docs.codecov.io/docs/codecovyml-reference | ||
# Validation check: $ curl --data-binary @codecov.yml https://codecov.io/validate | ||
|
||
|
||
codecov: | ||
token: 057953e4-d263-41c0-913c-5d45c0371df9 | ||
bot: "codecov-io" | ||
strict_yaml_branch: "yaml-config" | ||
require_ci_to_pass: yes | ||
notify: | ||
wait_for_ci: yes | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "70...100" | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 0.01 | ||
patch: false | ||
base: auto # target to compare against | ||
target: auto # target "X%" coverage to hit on project | ||
threshold: 1% # allow this much decrease from base | ||
if_ci_failed: error | ||
patch: | ||
default: | ||
base: auto # target to compare against | ||
target: 50% # target "X%" coverage to hit on patch | ||
# threshold: 50% # allow this much decrease on patch | ||
changes: false | ||
|
||
parsers: | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
|
||
# https://docs.codecov.io/docs/ignoring-paths | ||
ignore: | ||
- "ot/gpu/**/*" | ||
|
||
# https://docs.codecov.io/docs/pull-request-comments | ||
comment: | ||
layout: "header, diff, sunburst, uncovered" | ||
layout: header, diff, sunburst, uncovered | ||
behavior: default | ||
codecov: | ||
token: 057953e4-d263-41c0-913c-5d45c0371df9 | ||
require_changes: true # if true: only post the comment if coverage changes |
Empty file.
Oops, something went wrong.