aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2015-11-29 12:11:12 -0500
committerTim Harder <radhermit@gmail.com>2015-11-29 12:11:12 -0500
commit85bade8cb185b24289b15beecc68ec06c7c8ce78 (patch)
tree2a643cef89ef4bdbdcd1e71cfeba0f1bbb29d5da
parenttravis-ci: fix coverage reporting (diff)
downloadpkgcore-85bade8cb185b24289b15beecc68ec06c7c8ce78.tar.gz
pkgcore-85bade8cb185b24289b15beecc68ec06c7c8ce78.tar.bz2
pkgcore-85bade8cb185b24289b15beecc68ec06c7c8ce78.zip
travis-ci: start reporting coverage to codecov.io as well
It has some handy features that don't appear to be in coveralls.io such as browser extensions to overlay data onto github pages, file path rewrites, etc. Might switch to it later, but just report to both places for now.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 7aee3ab98..3090b8347 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,7 @@ addons:
cache:
directories:
- $HOME/.cache/pip
-install: pip install tox coveralls
+install: pip install tox coveralls codecov
before_script:
# Make sure the actual install-info binary is first in PATH since
# Debian-based distros use a wrapper script that outputs warnings and
@@ -29,4 +29,5 @@ after_success:
# upload coverage data
- pushd .tox/travis/lib/python*/site-packages
- coveralls
+ - codecov
- popd