We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db129ef commit 92706e9Copy full SHA for 92706e9
appveyor.yml
@@ -2,16 +2,18 @@ version: '{build}'
2
3
environment:
4
matrix:
5
- - PYTHON_EXE: "C:\\Python36\\python.exe"
6
- PYTHON_EXE: "C:\\Python36-x64\\python.exe"
+ - PYTHON_EXE: "C:\\Python37-x64\\python.exe"
7
+ - PYTHON_EXE: "C:\\Python38-x64\\python.exe"
8
+ - PYTHON_EXE: "C:\\Python39-x64\\python.exe"
9
10
install:
- - configure
11
+ - configure --dev
12
13
build: off
14
15
test_script:
- - 'bin\activate'
- - 'bin\python -c "from __future__ import print_function;import sys;print(sys.getdefaultencoding())"'
16
- - 'bin\py.test -vvs'
+ - 'tmp\Scripts\activate'
17
+ - 'tmp\Scripts\python -c "from __future__ import print_function;import sys;print(sys.getdefaultencoding())"'
18
+ - 'tmp\Scripts\pytest -vvs'
19
0 commit comments