summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2018-12-14 11:33:24 -0800
committerTyler Reddy <tyler.je.reddy@gmail.com>2018-12-30 18:43:30 -0800
commit3ddc23cdb2a21163dfd49a6eb31d264ff7923065 (patch)
treec0395471c95f584e316da26bc156b0aa048c662f
parent5e1a89113f69c49c03942dc0d02002c2bebb27a3 (diff)
downloadnumpy-3ddc23cdb2a21163dfd49a6eb31d264ff7923065.tar.gz
TST: use SciPy codecov config
* we have no idea why codecov API does not respond to codecov.yml settings as documented; we now use config from SciPy verbatim to avoid excessive coverage CI failures
-rw-r--r--.codecov.yml22
1 files changed, 4 insertions, 18 deletions
diff --git a/.codecov.yml b/.codecov.yml
index cb3ee230b..35584a188 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -1,29 +1,15 @@
codecov:
ci:
- # we don't require appveyor or
- # circleCI to pass to report
- # coverage, which currently only
- # comes from a single Python 3.6 job
- # in Travis
- !appveyor
- - !circle
notify:
- # don't require all travis builds to pass;
- # as long as the coverage job succeeds it
- # can report the % coverage, even if another
- # job needs a restart for whatever reason
- - require_ci_to_pass: no
- # we should only require a single build before
- # reporting the % coverage because there's only
- # one coverage job in Travis
- - after_n_builds: 1
+ require_ci_to_pass: no
+ after_n_builds: 1
coverage:
status:
project:
default:
# Require 1% coverage, i.e., always succeed
target: 1
+ patch: false
+ changes: false
comment: off
-
-ignore:
- - "**/setup.py"