diff --git a/.travis.yml b/.travis.yml index a96084592..72731b3d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ jobs: python: '3.4' - env: TOXENV=py36 python: '3.6' - - env: TOXENV=linting,docs,doctesting PYTEST_NO_COVERAGE=1 + - env: TOXENV=linting,docs,doctesting python: '3.7' - stage: deploy @@ -89,8 +89,8 @@ after_success: - | if [[ "$PYTEST_NO_COVERAGE" != 1 ]]; then set -e - # Add first TOXENV to $PATH. - PATH="$PWD/.tox/${TOXENV%%,*}/bin:$PATH" + # Add last TOXENV to $PATH. + PATH="$PWD/.tox/${TOXENV##*,}/bin:$PATH" coverage combine coverage xml --ignore-errors coverage report -m --ignore-errors diff --git a/appveyor.yml b/appveyor.yml index 313ff6131..47f5db9e6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,6 @@ environment: matrix: - TOXENV: "py27" - TOXENV: "py37" - PYTEST_NO_COVERAGE: "1" - TOXENV: "linting,docs,doctesting" - TOXENV: "py36" - TOXENV: "py35"