Skip to content

Commit 93a9836

Browse files
authored
Merge pull request #4374 from blueyed/doctesting
CI: doctesting uses coverage, fiy py37 on AppVeyor
2 parents 9af613b + 7436642 commit 93a9836

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- env: TOXENV=py34
5757
python: '3.4'
5858
- env: TOXENV=py36
59-
- env: TOXENV=linting,docs,doctesting PYTEST_NO_COVERAGE=1
59+
- env: TOXENV=linting,docs,doctesting
6060

6161
- stage: deploy
6262
python: '3.6'
@@ -89,8 +89,8 @@ after_success:
8989
- |
9090
if [[ "$PYTEST_NO_COVERAGE" != 1 ]]; then
9191
set -e
92-
# Add first TOXENV to $PATH.
93-
PATH="$PWD/.tox/${TOXENV%%,*}/bin:$PATH"
92+
# Add last TOXENV to $PATH.
93+
PATH="$PWD/.tox/${TOXENV##*,}/bin:$PATH"
9494
coverage combine
9595
coverage xml --ignore-errors
9696
coverage report -m --ignore-errors

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ environment:
22
matrix:
33
- TOXENV: "py27"
44
- TOXENV: "py37"
5-
PYTEST_NO_COVERAGE: "1"
65
- TOXENV: "linting,docs,doctesting"
76
- TOXENV: "py36"
87
- TOXENV: "py35"

0 commit comments

Comments
 (0)