-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-ci.yaml
316 lines (303 loc) · 7.91 KB
/
python-ci.yaml
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
version: 2.1
description: Tools for testing Python projects.
commands:
run-with-coverage:
parameters:
python:
type: string
default: "python"
command:
type: string
steps:
- run:
name: "Run Tests"
command: |
<< parameters.python >> --version
mkdir -p coverage_output
export COVERAGE_FILE=coverage_output/.coverage.$CIRCLE_BUILD_NUM
<< parameters.command >>
- persist_to_workspace:
root: coverage_output
paths:
- .coverage.*
pip-install:
parameters:
python:
type: string
default: "python"
extra_packages:
type: string
default: ""
editable:
type: boolean
default: false
package:
type: string
default: "."
extras:
type: string
default: ""
steps:
- run:
name: "Install Project"
command: "<< parameters.python >> -m pip install << parameters.extra_packages >> <<# parameters.editable >>-e <</ parameters.editable >><< parameters.package >><< parameters.extras >>"
pip-run-tests:
parameters:
python:
type: string
default: "python"
prepare:
type: steps
default: []
command:
type: string
default: pytest --cov
extra_packages:
type: string
default: ""
extras:
type: string
default: "[test]"
steps:
- checkout
- pip-install:
python: << parameters.python >>
editable: true
extra_packages: << parameters.extra_packages >>
extras: << parameters.extras >>
- steps: << parameters.prepare >>
- run-with-coverage:
python: << parameters.python >>
command: "<< parameters.python >> -m << parameters.command >>"
check-package:
parameters:
python:
type: string
default: "python"
package:
type: string
test:
type: steps
extra_packages:
type: string
default: ""
expect_changelog:
type: boolean
default: true
typed:
type: boolean
default: false
steps:
- attach_workspace:
at: dist
- run:
name: "Shows Distributions"
command: "ls -lah dist"
- run:
name: "Shows wheel contents"
command: "unzip -l dist/*.whl"
- run:
name: "Shows sdist contents"
command: "tar tzf dist/*.tar.gz"
- when:
condition: << parameters.typed >>
steps:
- run:
name: "Check py.typed in wheel"
command: "unzip -l dist/*.whl | grep << parameters.package >>/py.typed"
- run:
name: "Check py.typed in source dist"
command: "tar tzf dist/*.tar.gz | grep << parameters.package >>/py.typed"
- run:
name: "Check LICENSE in wheel"
command: "unzip -l dist/*.whl | grep LICENSE"
- run:
name: "Check LICENSE in source dist"
command: "tar tzf dist/*.tar.gz | grep LICENSE"
- when:
condition: << parameters.expect_changelog >>
steps:
- run:
name: "Check CHANGELOG in source dist"
command: "tar tzf dist/*.tar.gz | grep CHANGELOG"
- pip-install:
package: "dist/*.whl"
extra_packages: << parameters.extra_packages >>
- steps: << parameters.test >>
- run:
name: "Uninstall wheel"
command: "<< parameters.python >> -m pip uninstall -y << parameters.package >>"
- pip-install:
package: "dist/*.tar.gz"
extra_packages: << parameters.extra_packages >>
- steps: << parameters.test >>
jobs:
pip-run-tests:
parameters:
image:
type: string
prepare:
type: steps
default: []
command:
type: string
default: pytest --cov
extra_packages:
type: string
default: ""
extras:
type: string
default: "[test]"
python:
type: string
default: "python"
docker:
- image: << parameters.image >>
steps:
- pip-run-tests:
prepare: << parameters.prepare >>
command: << parameters.command >>
extra_packages: << parameters.extra_packages >>
extras: << parameters.extras >>
python: << parameters.python >>
pip-docs:
parameters:
image:
type: string
default: "cimg/python:3.11"
python:
type: string
default: "python"
sourcedir:
type: string
default: "docs"
outdir:
type: string
default: "build/sphinx/html"
docker:
- image: << parameters.image >>
steps:
- checkout
- pip-install:
editable: true
extras: "[docs]"
- run:
name: "Build Docs"
command: |
<< parameters.python >> -m sphinx -W --keep-going << parameters.sourcedir >> << parameters.outdir >>
<< parameters.python >> -m docutils --strict --strict README.rst README.html
- store_artifacts:
path: << parameters.outdir >>
destination: docs
pip-setuptools-build-package:
parameters:
image:
type: string
default: cimg/python:3.11
docker:
- image: << parameters.image >>
steps:
- checkout
- pip-install:
editable: true
extra_packages: "setuptools-git build"
- run:
name: "Build Distributions"
command: "python -m build"
- persist_to_workspace:
root: dist
paths:
- "*"
- store_artifacts:
path: dist
destination: dist
coverage:
parameters:
image:
type: string
default: cimg/python:3.11
docker:
- image: << parameters.image >>
steps:
- checkout
- attach_workspace:
at: coverage_output
- run:
name: "Check coverage"
command: |
pip install coverage
coverage combine coverage_output/
coverage report --show-missing --fail-under=100
typing:
parameters:
packages:
type: string
image:
type: string
default: cimg/python:3.11
python:
type: string
default: "python"
extras:
type: string
default: "[test]"
docker:
- image: << parameters.image >>
steps:
- checkout
- pip-install:
python: << parameters.python >>
editable: true
extras: << parameters.extras >>
- run: "<< parameters.python >> -m mypy << parameters.packages >>"
check-package:
parameters:
image:
type: string
default: cimg/python:3.11
python:
type: string
default: "python"
package:
type: string
extra_packages:
type: string
default: ""
typed:
type: boolean
default: false
docker:
- image: << parameters.image >>
steps:
- attach_workspace:
at: dist
- check-package:
python: << parameters.python >>
package: << parameters.package >>
typed: << parameters.typed >>
test:
- run:
name: "Import package"
command: python -c "import << parameters.package >>"
release:
parameters:
config:
type: string
default: pyproject.toml
image:
type: string
default: cimg/python:3.11
docker:
- image: << parameters.image >>
steps:
- checkout
- attach_workspace:
at: dist
- run:
name: "Shows Distributions"
command: "ls -lah dist"
- run:
name: "Release"
command: |
pip install carthorse
carthorse --config << parameters.config >>