diff options
author | Daniel <dmoody256@gmail.com> | 2019-01-30 03:36:20 (GMT) |
---|---|---|
committer | Daniel <dmoody256@gmail.com> | 2019-01-30 03:36:20 (GMT) |
commit | 25ab12588f18bdb7ce8034bff795bba99e61d700 (patch) | |
tree | cc908bbb4dddfd074eb6793d31dd9b9614a2597e /.codecov.yml | |
parent | 8666b9e990a85fad8ef5c4d29f7d902947097db3 (diff) | |
parent | 43d40021b7581c40c7dbd87e021a742f2a915102 (diff) | |
download | SCons-25ab12588f18bdb7ce8034bff795bba99e61d700.zip SCons-25ab12588f18bdb7ce8034bff795bba99e61d700.tar.gz SCons-25ab12588f18bdb7ce8034bff795bba99e61d700.tar.bz2 |
Merge remote-tracking branch 'origin/master' into change_appendenvpath_default
Diffstat (limited to '.codecov.yml')
-rw-r--r-- | .codecov.yml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000..375b10f --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,50 @@ +codecov: + notify: + # calculate coverge even when we fail + require_ci_to_pass: no + +ignore: + # ignore test files in the source + # this is redundant and should not be in the report anyways + # because the coveragerc file ignores them + - "*Test.py" + - "setup.py" + - "test_*" + +coverage: + precision: 2 + round: down + range: "70...100" + + notify: + irc: + default: + server: "chat.freenode.net#scons" + branches: master + threshold: null + message: "Coverage {{changed}} for {{owner}}/{{repo}}" # customize the message + flags: null + paths: null + + status: + project: + default: + # compare against the current coverage + # that PR is attempt to merge to + # don't consider a drop in coverage success + target: auto + threshold: null + base: pr + + patch: + default: + # considering only the lines changed + # make sure all new lines in the PR are covered + # to consider a success + target: 100 + threshold: null + base: pr + + changes: no + +comment: off |