forked from BoboTiG/python-mss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
47 lines (43 loc) · 1016 Bytes
/
appveyor.yml
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
39
40
41
42
43
44
45
46
47
build: off
cache:
- '%LOCALAPPDATA%\pip\Cache'
environment:
fast_finish: true
matrix:
- python: py35
tox_env: py35
python_path: c:\python35
- python: py35-x64
tox_env: py35
python_path: c:\python35-x64
- python: py36
tox_env: py36
python_path: c:\python36
- python: py36-x64
tox_env: py36
python_path: c:\python36-x64
- python: py37
tox_env: py37
python_path: c:\python37
- python: py37-x64
tox_env: py37
python_path: c:\python37-x64
- python: py38
tox_env: py38
python_path: c:\python38
- python: py38-x64
tox_env: py38
python_path: c:\python38-x64
- python: py39
tox_env: py39
python_path: c:\python39
- python: py39-x64
tox_env: py39
python_path: c:\python39-x64
install:
- python -m pip install virtualenv
- python -m virtualenv env
- env\Scripts\activate.bat
- python -m pip install --upgrade pip tox
test_script:
tox -e %tox_env%