• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set -e
4set -x
5
6NO_COVERAGE_TOXENVS=(pypy docs check-manifest pypi-readme flake8)
7if ! [[ "${NO_COVERAGE_TOXENVS[*]}" =~ "${TOXENV}" ]]; then
8    source ~/.venv/bin/activate
9    coverage combine
10    bash <(curl -s https://codecov.io/bash) -e TRAVIS_OS_NAME,TOXENV,OPENSSL
11fi
12