forked from BoboTiG/python-mss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
38 lines (30 loc) · 714 Bytes
/
appveyor.yml
File metadata and controls
38 lines (30 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
build: off
image:
- Visual Studio 2019
platform:
- x64
- x86
environment:
fast_finish: true
matrix:
- PYTHON_VERSION: 3.10
- PYTHON_VERSION: 3.9
- PYTHON_VERSION: 3.8
- PYTHON_VERSION: 3.7
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.5
matrix:
allow_failures:
- PYTHON_VERSION: 3.10
- PYTHON_VERSION: 3.9
init:
# Update Environment Variables based on matrix/platform
- set PY_VER=%PYTHON_VERSION:.=%
- set PYTHON=C:\PYTHON%PY_VER%
- if %PLATFORM%==x64 (set PYTHON=%PYTHON%-x64)
# Put desired Python version first in PATH
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
install:
- python -m pip install --upgrade pip tox
test_script:
- tox -e py%PY_VER%