blob: 62489560ddba12df430c3c7e8dc8e66644b1d253 [file] [log] [blame]
Alex Gaynorb724d982015-07-12 12:13:55 -05001#!/bin/bash
2
3set -e
4set -x
5
6NO_COVERAGE_TOXENVS=(pypy pypy3 pep8 py3pep8 docs)
7if ! [[ "${NO_COVERAGE_TOXENVS[*]}" =~ "${TOXENV}" ]]; then
8 source ~/.venv/bin/activate
Alex Gaynor41aabcb2015-09-09 22:16:37 -04009 wget https://codecov.io/bash -O codecov.sh
10 bash codecov.sh -e TRAVIS_OS_NAME,TOXENV,OPENSSL
Alex Gaynorb724d982015-07-12 12:13:55 -050011fi