File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
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
+ 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
You can’t perform that action at this time.
0 commit comments