Skip to content

Commit 5408c98

Browse files
committed
add Windows CI via AppVeyor
1 parent 22f2047 commit 5408c98

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

appveyor.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# What Python version is installed where:
2+
# http://www.appveyor.com/docs/installed-software#python
3+
4+
environment:
5+
matrix:
6+
- PYTHON: "C:\\Python27"
7+
TOX_ENV: "py27"
8+
9+
- PYTHON: "C:\\Python35"
10+
TOX_ENV: "py35"
11+
12+
- PYTHON: "C:\\Python36"
13+
TOX_ENV: "py36"
14+
15+
- PYTHON: "C:\\Python37"
16+
TOX_ENV: "py37"
17+
18+
- PYTHON: "C:\\Python38"
19+
TOX_ENV: "py38"
20+
21+
22+
init:
23+
- "%PYTHON%/python -V"
24+
- "%PYTHON%/python -c \"import struct;print( 8 * struct.calcsize(\'P\'))\""
25+
26+
install:
27+
- "%PYTHON%/Scripts/easy_install -U pip"
28+
- "%PYTHON%/Scripts/pip install tox"
29+
- "%PYTHON%/Scripts/pip install wheel"
30+
- "%PYTHON%/Scripts/pip install psutil"
31+
32+
build: false # Not a C# project, build stuff at the test step instead.
33+
34+
test_script:
35+
- "%PYTHON%/Scripts/tox -e %TOX_ENV%"
36+
37+
#on_success:
38+
# - TODO: upload the content of dist/*.whl to a public wheelhouse

0 commit comments

Comments
 (0)