From fc96ac509da560e57517859b1fd366e01506896e Mon Sep 17 00:00:00 2001 From: Atsushi Odagiri Date: Mon, 1 Oct 2018 14:28:31 +0900 Subject: [PATCH 1/2] Update .travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) 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 From 4a47e84fbe90c28a193e20b26392b228a3ba359c Mon Sep 17 00:00:00 2001 From: Atsushi Odagiri Date: Mon, 1 Oct 2018 14:29:03 +0900 Subject: [PATCH 2/2] Update tox.ini --- tox.ini | 6 ------ 1 file changed, 6 deletions(-) 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