-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
azure-pipelines.yml
256 lines (193 loc) · 5.61 KB
/
azure-pipelines.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
pr:
branches:
include:
- main
- stable
variables:
- group: default-variables
- name: pip_cache_dir
value: $(Pipeline.Workspace)/.pip
stages:
- stage: code_quality
displayName: Check code quality
jobs:
- job: flake8
displayName: Run all flake8 checks
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install -U tox
displayName: Install tox
- script: pip install -r requirements-dev.txt
displayName: Install full dev requirements (CI & flake8)
- script: pytest -k flake8 --flake8_ext
displayName: Confirm all plugins active
- script: tox -e flake8
displayName: Lint the codebase
- job: interrogate
displayName: Run interrogate docstrings check
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install interrogate
displayName: Install interrogate
- script: interrogate -vv -f 100 src tests conftest.py
displayName: Run interrogate
- stage: main_tests
displayName: Run main code tests
jobs:
- template: azure-coretest.yml
parameters:
pythons:
py39:
spec: '3.9'
py310:
spec: '3.10'
py311:
spec: '3.11'
py312:
spec: '3.12'
py313:
spec: '3.13'
pypy3:
spec: 'pypy3'
platforms: [linux]
- template: azure-coretest.yml
parameters:
pythons:
py39:
spec: '3.9'
py310:
spec: '3.10'
py311:
spec: '3.11'
py312:
spec: '3.12'
py313:
spec: '3.13'
platforms: [windows, macOs]
- template: azure-sdisttest.yml
- stage: aux_tests
displayName: Run auxiliary tests
jobs:
- job: docs_build
displayName: Check for doc build warnings
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install . -r requirements-rtd.txt
displayName: Install project, plus docs requirements
- script: cd doc; make html -Wn --keep-going
displayName: Build docs with warnings as errors
- job: doctest
displayName: Run doctest suite
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install -r requirements-dev.txt
displayName: Install full dev requirements
- script: cd doc; make doctest
displayName: Run doctests
- job: readme
displayName: Run README doctests
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- script: pip install -r requirements-ci.txt
displayName: Install CI requirements
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: cd doc; make html
displayName: Build docs
- script: pytest -k readme --doctest-glob="README.md"
displayName: Run README doctests
- job: testdir_coverage
displayName: Confirm all test code was executed
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install -r requirements-dev.txt
displayName: Install full dev requirements
- script: cd doc; make html; mkdir scratch
displayName: Build docset
- script: pytest --cov=. --nonloc --flake8_ext
displayName: Run pytest with coverage on the entire project tree
- script: coverage report --include="tests/*" --fail-under=100
displayName: Check 100% test execution
- job: noqa_info
displayName: Report flake8-noqa results for info (never fails)
pool:
vmImage: 'Ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.12'
- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt'
restoreKeys: |
pip | "$(Agent.OS)"
path: $(pip_cache_dir)
displayName: Cache pip
- script: pip install tox flake8-noqa -r requirements-flake8.txt
displayName: Install requirements
- script: tox -e flake8-noqa
displayName: Run never-fail flake8 with noqa check