Skip to content

Commit 92706e9

Browse files
committed
Use correct path for Windows and run all Pythons
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent db129ef commit 92706e9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

appveyor.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@ version: '{build}'
22

33
environment:
44
matrix:
5-
- PYTHON_EXE: "C:\\Python36\\python.exe"
65
- PYTHON_EXE: "C:\\Python36-x64\\python.exe"
6+
- PYTHON_EXE: "C:\\Python37-x64\\python.exe"
7+
- PYTHON_EXE: "C:\\Python38-x64\\python.exe"
8+
- PYTHON_EXE: "C:\\Python39-x64\\python.exe"
79

810
install:
9-
- configure
11+
- configure --dev
1012

1113
build: off
1214

1315
test_script:
14-
- 'bin\activate'
15-
- 'bin\python -c "from __future__ import print_function;import sys;print(sys.getdefaultencoding())"'
16-
- 'bin\py.test -vvs'
16+
- 'tmp\Scripts\activate'
17+
- 'tmp\Scripts\python -c "from __future__ import print_function;import sys;print(sys.getdefaultencoding())"'
18+
- 'tmp\Scripts\pytest -vvs'
1719

0 commit comments

Comments
 (0)