Skip to content

Commit 074cde1

Browse files
committed
[appveyor.yml] set tox testing to environment specific Py interpreters
1 parent f38e271 commit 074cde1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

appveyor.yml

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

67
- JOB: "3.6 64-bit"
78
PYTHON_HOME: "C:\\Python36-x64"
9+
test_script: "tox -e py36"
810

911
- JOB: "3.7 64-bit"
1012
PYTHON_HOME: "C:\\Python37-x64"
13+
test_script: "tox -e py37"
1114

1215
- JOB: "3.7 32-bit"
1316
PYTHON_HOME: "C:\\Python37"
17+
test_script: "tox -e py37"
1418

1519
install:
1620
# If there is a newer build queued for the same PR, cancel this one.
@@ -37,7 +41,3 @@ install:
3741
- "python -m pip install tox"
3842

3943
build: false
40-
41-
test_script:
42-
# run tests
43-
- "tox"

0 commit comments

Comments
 (0)