Skip to content

Commit db19ff9

Browse files
committed
Update appveyor config
1 parent b2ea61a commit db19ff9

File tree

1 file changed

+8
-33
lines changed

1 file changed

+8
-33
lines changed

appveyor.yml

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,15 @@
1-
# What Python version is installed where:
2-
# http://www.appveyor.com/docs/installed-software#python
3-
41
environment:
52
matrix:
6-
- PYTHON: "C:\\Python27-x64"
7-
TOX_ENV: "py27"
8-
9-
- PYTHON: "C:\\Python34-x64"
10-
TOX_ENV: "py34"
11-
12-
- PYTHON: "C:\\Python35-x64"
13-
TOX_ENV: "py35"
14-
3+
- TOXENV: py27
4+
- TOXENV: py34
5+
- TOXENV: py35
6+
- TOXENV: py36
7+
- TOXENV: py37
158

16-
init:
17-
- "%PYTHON%/python -V"
18-
- "%PYTHON%/python -c \"import struct;print( 8 * struct.calcsize(\'P\'))\""
19-
- "%PYTHON%/python -c \"import sys;print(sys.version_info[0] == 2)\""
20-
- "%PYTHON%/python -c \"import platform;print(platform.system().lower().startswith(\'windows\'))\""
9+
build: off
2110

2211
install:
23-
- "%PYTHON%/Scripts/easy_install -U pip"
24-
- "%PYTHON%/Scripts/pip install tox"
25-
- "%PYTHON%/Scripts/pip install wheel"
26-
27-
build: false # Not a C# project, build stuff at the test step instead.
12+
- pip install tox
2813

2914
test_script:
30-
- "%PYTHON%/Scripts/tox -e %TOX_ENV%"
31-
32-
after_test:
33-
- "%PYTHON%/python setup.py bdist_wheel"
34-
- ps: "ls dist"
35-
36-
artifacts:
37-
- path: dist\*
38-
39-
#on_success:
40-
# - TODO: upload the content of dist/*.whl to a public wheelhouse
15+
- tox

0 commit comments

Comments
 (0)