diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-05-13 20:51:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-13 20:51:24 (GMT) |
commit | 178756c15da0652b30b55b41f0bb939b61c66513 (patch) | |
tree | a5d83edc763674c821be65146ebc72ee7932ffd0 /.github | |
parent | 3a66ab8695e9ba969ff6bdd8c91f88138c8b5187 (diff) | |
download | cpython-178756c15da0652b30b55b41f0bb939b61c66513.zip cpython-178756c15da0652b30b55b41f0bb939b61c66513.tar.gz cpython-178756c15da0652b30b55b41f0bb939b61c66513.tar.bz2 |
[3.6] Move Codecov's configuration file under .github (GH-1494) (GH-1574)
(cherry picked from commit cbddf58c797f850a5b06f317a4bb7ab69c6e9715)
Diffstat (limited to '.github')
-rw-r--r-- | .github/codecov.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 0000000..fcf9df6 --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,35 @@ +codecov: + notify: + require_ci_to_pass: true +comment: off +ignore: + - "Doc/**/*" + - "Misc/*" + - "Mac/**/*" + - "PC/**/*" + - "PCbuild/**/*" + - "Tools/**/*" + - "Grammar/*" +coverage: + precision: 2 + range: + - 70.0 + - 100.0 + round: down + status: + changes: off + project: off + patch: + default: + target: 100% + only_pulls: true + threshold: 0.05 +parsers: + gcov: + branch_detection: + conditional: true + loop: true + macro: false + method: false + javascript: + enable_partials: false |