Skip to content

Commit b511372

Browse files
committed
[appveyor.yml] environment variables for tox execution
1 parent 074cde1 commit b511372

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

appveyor.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ environment:
22
matrix:
33
- JOB: "3.5 64-bit"
44
PYTHON_HOME: "C:\\Python35-x64"
5-
test_script: "tox -e py35"
5+
TOX_PY: py35
66

77
- JOB: "3.6 64-bit"
88
PYTHON_HOME: "C:\\Python36-x64"
9-
test_script: "tox -e py36"
9+
TOX_PY: py36
1010

1111
- JOB: "3.7 64-bit"
1212
PYTHON_HOME: "C:\\Python37-x64"
13-
test_script: "tox -e py37"
13+
TOX_PY: py37
1414

1515
- JOB: "3.7 32-bit"
1616
PYTHON_HOME: "C:\\Python37"
17-
test_script: "tox -e py37"
17+
TOX_PY: py37
1818

1919
install:
2020
# If there is a newer build queued for the same PR, cancel this one.
@@ -41,3 +41,6 @@ install:
4141
- "python -m pip install tox"
4242

4343
build: false
44+
45+
test_script:
46+
- "tox -e %TOX_PY%"

0 commit comments

Comments
 (0)