blob: 02ea5f471f9829de3d4507abec359515fc696e9c [file] [log] [blame]
#!/bin/bash
set -e
set -x
NO_COVERAGE_TOXENVS=(pypy docs check-manifest pypi-readme flake8)
if ! [[ "${NO_COVERAGE_TOXENVS[*]}" =~ "${TOXENV}" ]]; then
source ~/.venv/bin/activate
coverage combine
bash <(curl -s https://codecov.io/bash) -e TRAVIS_OS_NAME,TOXENV,OPENSSL
fi