File tree Expand file tree Collapse file tree 1 file changed +8
-33
lines changed Expand file tree Collapse file tree 1 file changed +8
-33
lines changed Original file line number Diff line number Diff line change 1
- # What Python version is installed where:
2
- # http://www.appveyor.com/docs/installed-software#python
3
-
4
1
environment :
5
2
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
15
8
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
21
10
22
11
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
28
13
29
14
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
You can’t perform that action at this time.
0 commit comments