blob: 554116f78c26d9c9190a321de16e9800b72626e7 [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
9 bash <(curl -s https://codecov.io/bash) -e TRAVIS_OS_NAME,TOXENV,OPENSSL
10fi