-
Notifications
You must be signed in to change notification settings - Fork 54
/
.appveyor.yml
112 lines (102 loc) · 2.67 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
environment:
global:
PYTHON: "C:\\Python36"
matrix:
- TOXENV: py27-pip8.1.1-coverage
PIP: 8.1.1
- TOXENV: py27-pip9.0.1
PIP: 9.0.1
- TOXENV: py27-pip9.0.3
PIP: 9.0.3
- TOXENV: py27-pip10.0.1
PIP: 10.0.1
- TOXENV: py27-pip18.0
PIP: 18.0
- TOXENV: py27-pip19.0
PIP: 19.0
- TOXENV: py27-pipmaster
PIP: master
- TOXENV: py27-piplatest-coverage
PIP: latest
- TOXENV: py34-pip8.1.1
PIP: 8.1.1
- TOXENV: py34-pip9.0.1
PIP: 9.0.1
- TOXENV: py34-pip9.0.3-coverage
PIP: 9.0.3
- TOXENV: py34-pip10.0.1
PIP: 10.0.1
- TOXENV: py34-pip18.0
PIP: 18.0
- TOXENV: py34-pip19.0
PIP: 19.0
- TOXENV: py34-pipmaster
PIP: master
- TOXENV: py34-piplatest
PIP: latest
- TOXENV: py35-pip8.1.1
PIP: 8.1.1
- TOXENV: py35-pip9.0.1
PIP: 9.0.1
- TOXENV: py35-pip9.0.3
PIP: 9.0.3
- TOXENV: py35-pip10.0.1
PIP: 10.0.1
- TOXENV: py35-pip18.0-coverage
PIP: 18.0
- TOXENV: py35-pip19.0
PIP: 19.0
- TOXENV: py35-pipmaster
PIP: master
- TOXENV: py35-piplatest
PIP: latest
- TOXENV: py36-pip8.1.1
PIP: 8.1.1
- TOXENV: py36-pip9.0.1
PIP: 9.0.1
- TOXENV: py36-pip9.0.3
PIP: 9.0.3
- TOXENV: py36-pip10.0.1
PIP: 10.0.1
- TOXENV: py36-pip18.0
PIP: 18.0
- TOXENV: py36-pip19.0-coverage
PIP: 19.0
- TOXENV: py36-pipmaster
PIP: master
- TOXENV: py36-piplatest
PIP: latest
- TOXENV: py37-pip8.1.1
PIP: 8.1.1
- TOXENV: py37-pip9.0.1
PIP: 9.0.1
- TOXENV: py37-pip9.0.3
PIP: 9.0.3
- TOXENV: py37-pip10.0.1
PIP: 10.0.1
- TOXENV: py37-pip18.0
PIP: 18.0
- TOXENV: py37-pip19.0
PIP: 19.0
- TOXENV: py37-pipmaster-coverage
PIP: master
- TOXENV: py37-piplatest-coverage
PIP: latest
matrix:
fast_finish: true
allow_failures:
- PIP: master
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install tox
build: false
test_script:
- tox
after_test:
# Add tox environment to PATH.
- "SET PATH=%CD%\\.tox\\%TOXENV%\\scripts;%PATH%"
- IF NOT "x%TOXENV:-coverage=%"=="x%TOXENV%" (
pip install codecov &&
coverage xml &&
codecov --required -X gcov pycov search -f coverage.xml -n %TOXENV%-windows
)