Skip to content

Commit 4162527

Browse files
committed
Update appveyor config
1 parent 5763ce6 commit 4162527

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

appveyor.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
1-
---
1+
build: false # Not a C# project, build stuff at the test step instead.
22
environment:
33
matrix:
4-
- PYTHON: "C:\\Python27"
5-
- PYTHON: "C:\\Python33"
6-
- PYTHON: "C:\\Python34"
7-
# - PYTHON: "C:\\Python35"
8-
9-
init:
10-
- "%PYTHON%/python -V"
11-
- "%PYTHON%/python -c \"import struct;print( 8 * struct.calcsize(\'P\'))\""
4+
- PYTHON_VERSION: "2.7"
5+
PYTHON : "C:\\Python27"
6+
- PYTHON_VERSION: "3.5"
7+
PYTHON: "C:\\Python35-x64"
8+
- PYTHON_VERSION: "3.6"
9+
PYTHON: "C:\\Python36-x64"
10+
- PYTHON_VERSION: "3.7"
11+
PYTHON: "C:\\Python37-x64"
1212

1313
install:
1414
- "%PYTHON%/Scripts/easy_install -U pip"
1515
- "%PYTHON%/Scripts/easy_install lxml==3.5.0"
1616
- "%PYTHON%/Scripts/pip install wheel"
1717
- "%PYTHON%/Scripts/pip install -e .[test]"
1818

19-
20-
build: false # Not a C# project, build stuff at the test step instead.
21-
2219
test_script:
2320
- "%PYTHON%/Scripts/py.test --cov=zeep --cov-report=term-missing"
2421

0 commit comments

Comments
 (0)