Skip to content

Commit d33b7f5

Browse files
committed
Use correct path for Windows and run all Pythons
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent db129ef commit d33b7f5

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

appveyor.yml

Lines changed: 6 additions & 4 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:
911
- configure
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\py.test -vvs'
1719

0 commit comments

Comments
 (0)