forked from GrahamDumpleton/wrapt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
25 lines (18 loc) · 797 Bytes
/
appveyor.yml
File metadata and controls
25 lines (18 loc) · 797 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
environment:
matrix:
- PYTHON: "C:\\Python27-x64"
TOX_ENV: "py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- PYTHON: "C:\\Python34-x64"
TOX_ENV: "py34-install-extensions,py34-disable-extensions,py34-without-extensions"
- PYTHON: "C:\\Python35-x64"
TOX_ENV: "py35-install-extensions,py35-disable-extensions,py35-without-extensions"
- PYTHON: "C:\\Python36-x64"
TOX_ENV: "py36-install-extensions,py36-disable-extensions,py36-without-extensions"
- PYTHON: "C:\\Python37-x64"
TOX_ENV: "py37-install-extensions,py37-disable-extensions,py37-without-extensions"
install:
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install tox"
build: false
test_script:
- "%PYTHON%/Scripts/tox -e %TOX_ENV%"