diff options
author | morrme <morrme@users.noreply.github.com> | 2017-05-13 20:34:06 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-05-13 20:34:06 (GMT) |
commit | cbddf58c797f850a5b06f317a4bb7ab69c6e9715 (patch) | |
tree | c112e36b350d8b9c42f0b0a752495618e404f5c4 /.github/codecov.yml | |
parent | 600c5ad53c0112d48581c48f986ea04676a28c44 (diff) | |
download | cpython-cbddf58c797f850a5b06f317a4bb7ab69c6e9715.zip cpython-cbddf58c797f850a5b06f317a4bb7ab69c6e9715.tar.gz cpython-cbddf58c797f850a5b06f317a4bb7ab69c6e9715.tar.bz2 |
Move Codecov's configuration file under .github (GH-1494)
Diffstat (limited to '.github/codecov.yml')
-rw-r--r-- | .github/codecov.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 0000000..2106da6 --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,29 @@ +codecov: + notify: + require_ci_to_pass: true +comment: off +ignore: + - "Doc/**/*" + - "Misc/*" + - "Mac/**/*" + - "PC/**/*" + - "PCbuild/**/*" + - "Tools/**/*" + - "Grammar/*" +coverage: + precision: 2 + range: 70...90 + round: down + status: + changes: off + project: off + patch: off +parsers: + gcov: + branch_detection: + conditional: true + loop: true + macro: false + method: false + javascript: + enable_partials: false |