[Python-checkins] bpo-40156: Copy Codecov configuration from master (#19309)

Victor Stinner webhook-mailer at python.org
Thu Apr 2 19:10:06 EDT 2020


https://github.com/python/cpython/commit/ed07522a5faa3101f68be8e4b8369310f60860f8
commit: ed07522a5faa3101f68be8e4b8369310f60860f8
branch: 3.5
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-04-02T16:09:58-07:00
summary:

bpo-40156: Copy Codecov configuration from master (#19309)

Disable "Codevov patch" job on pull requests.

files:
M .github/codecov.yml

diff --git a/.github/codecov.yml b/.github/codecov.yml
index dc21321d0baaf..ea504f48672ea 100644
--- a/.github/codecov.yml
+++ b/.github/codecov.yml
@@ -5,7 +5,7 @@ codecov:
 comment: off
 ignore:
   - "Doc/**/*"
-  - "Misc/*"
+  - "Misc/**/*"
   - "Mac/**/*"
   - "PC/**/*"
   - "PCbuild/**/*"
@@ -13,18 +13,12 @@ ignore:
   - "Grammar/*"
 coverage:
   precision: 2
-  range:
-  - 70.0
-  - 100.0
+  range: 70...90
   round: down
   status:
     changes: off
     project: off
-    patch:
-      default:
-        target: 100%
-        only_pulls: true
-        threshold: 0.05
+    patch: off
 parsers:
   gcov:
     branch_detection:



More information about the Python-checkins mailing list