borg/.travis/upload_coverage.sh

13 lines
274 B
Bash
Raw Normal View History

2015-08-07 13:17:07 +00:00
#!/bin/bash
set -e
set -x
NO_COVERAGE_TOXENVS=(pep8)
if ! [[ "${NO_COVERAGE_TOXENVS[*]}" =~ "${TOXENV}" ]]; then
source ~/.venv/bin/activate
2015-08-08 17:22:25 +00:00
# on osx, tests run as root, need access to .coverage
sudo chmod 666 .coverage
codecov -e TRAVIS_OS_NAME TOXENV
2015-08-07 13:17:07 +00:00
fi