diff --git a/.travis.yml b/.travis.yml index 24ecec3..75a5957 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,3 +20,4 @@ jobs: env: TOXENV=mypy after_success: - if test "$TOXENV" = coverage ; then pip install coveralls; coveralls ; fi + - if test "$TOXENV" = coverage ; then pip install codecov; codecov ; fi diff --git a/tox.ini b/tox.ini index 67a67ec..90d5236 100644 --- a/tox.ini +++ b/tox.ini @@ -7,16 +7,10 @@ commands = py.test webdispatch [testenv:coverage] -passenv = - CI - TRAVIS - TRAVIS_* basepython = python3.6 commands = pip install -e .[testing] -c constraints.txt - pip install codecov py.test webdispatch --cov=webdispatch --cov-report=term-missing - codecov [testenv:flake8] basepython = python3.6