-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathappveyor.yml
More file actions
19 lines (14 loc) · 628 Bytes
/
appveyor.yml
File metadata and controls
19 lines (14 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
################################################################################
# We use Appveyor to run minimal smoke tests suites on Pythons 3.x
# on Windows 64 bits
################################################################################
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
# - PYTHON: "C:\\Python37-x64"
# - PYTHON: "C:\\Python38-x64"
# - PYTHON: "C:\\Python39-x64"
build: off
test_script:
- python -c "import sys;print(sys.getdefaultencoding())"
- cmd: "set PYTHON_EXECUTABLE=%PYTHON%\\python.exe && configure --dev && venv\\Scripts\\pytest -vvs tests"