-
Notifications
You must be signed in to change notification settings - Fork 0
/
duties.py
359 lines (290 loc) · 9.49 KB
/
duties.py
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
"""Development tasks."""
import inspect
import os
import re
import sys
from pathlib import Path
from shutil import which
from typing import List, Optional, Pattern
import httpx
from duty import duty
from git_changelog.build import Changelog, Version
from jinja2.sandbox import SandboxedEnvironment
PY_SRC_PATHS = (Path(_) for _ in ("src", "tests", "duties.py", "docs/macros.py"))
PY_SRC_LIST = tuple(str(_) for _ in PY_SRC_PATHS)
PY_SRC = " ".join(PY_SRC_LIST)
TESTING = os.environ.get("TESTING", "0") in {"1", "true"}
CI = os.environ.get("CI", "0") in {"1", "true", "yes", ""}
WINDOWS = os.name == "nt"
PTY = not WINDOWS and not CI
def latest(lines: List[str], regex: Pattern) -> Optional[str]:
"""
Return the last released version.
Arguments:
lines: Lines of the changelog file.
regex: A compiled regex to find version numbers.
Returns:
The last version.
"""
for line in lines:
match = regex.search(line)
if match:
return match.groupdict()["version"]
return None
def unreleased(versions: List[Version], last_release: str) -> List[Version]:
"""
Return the most recent versions down to latest release.
Arguments:
versions: All the versions (released and unreleased).
last_release: The latest release.
Returns:
A list of versions.
"""
for index, version in enumerate(versions):
if version.tag == last_release:
return versions[:index]
return versions
def read_changelog(filepath: str) -> List[str]:
"""
Read the changelog file.
Arguments:
filepath: The path to the changelog file.
Returns:
The changelog lines.
"""
with open(filepath) as changelog_file:
return changelog_file.read().splitlines()
def write_changelog(filepath: str, lines: List[str]) -> None:
"""
Write the changelog file.
Arguments:
filepath: The path to the changelog file.
lines: The lines to write to the file.
"""
with open(filepath, "w") as changelog_file:
changelog_file.write("\n".join(lines).rstrip("\n") + "\n")
def update_changelog(
inplace_file: str,
marker: str,
version_regex: str,
template_url: str,
commit_style: str,
) -> None:
"""
Update the given changelog file in place.
Arguments:
inplace_file: The file to update in-place.
marker: The line after which to insert new contents.
version_regex: A regular expression to find currently documented versions in the file.
template_url: The URL to the Jinja template used to render contents.
commit_style: The style of commit messages to parse.
"""
env = SandboxedEnvironment(autoescape=False)
template = env.from_string(httpx.get(template_url).text)
changelog = Changelog(".", style=commit_style)
if len(changelog.versions_list) == 1:
last_version = changelog.versions_list[0]
if last_version.planned_tag is None:
planned_tag = "0.1.0"
last_version.tag = planned_tag
last_version.url += planned_tag
last_version.compare_url = last_version.compare_url.replace(
"HEAD", planned_tag
)
lines = read_changelog(inplace_file)
last_released = latest(lines, re.compile(version_regex))
if last_released:
changelog.versions_list = unreleased(changelog.versions_list, last_released)
rendered = template.render(changelog=changelog, inplace=True)
lines[lines.index(marker)] = rendered
write_changelog(inplace_file, lines)
@duty
def changelog(ctx):
"""
Update the changelog in-place with latest commits.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run(
update_changelog,
kwargs={
"inplace_file": "CHANGELOG.md",
"marker": "<!-- insertion marker -->",
"version_regex": r"^## \[v?(?P<version>[^\]]+)",
"template_url": "https://raw.githubusercontent.com/pawamoy/jinja-templates/master/keepachangelog.md",
"commit_style": "angular",
},
title="Updating changelog",
pty=PTY,
)
@duty(pre=["check_code_quality", "check_types", "check_docs", "check_dependencies"])
def check(ctx):
"""
Check it all!
Arguments:
ctx: The context instance (passed automatically).
"""
@duty
def check_code_quality(ctx, files=PY_SRC):
"""
Check the code quality.
Arguments:
ctx: The context instance (passed automatically).
files: The files to check.
"""
# ctx.run(
# f"flake8 --config=config/flake8.ini {files}",
# title="Checking code quality",
# pty=PTY,
# )
@duty
def check_dependencies(ctx):
"""
Check for vulnerabilities in dependencies.
Arguments:
ctx: The context instance (passed automatically).
"""
nofail = False
safety = which("safety")
if not safety:
pipx = which("pipx")
if pipx:
safety = f"{pipx} run safety"
else:
def safety_not_available(): # noqa: WPS430
print(
inspect.cleandoc( # noqa: WPS462
"""
Please install safety or pipx to run this task:
pip install --user safety
# or
pip install --user pipx
# and potentially
pipx install safety
See https://github.com/advisories/GHSA-7q25-qrjw-6fg2
"""
) # noqa: WPS355
)
return 1
ctx.run(safety_not_available, title="Checking dependencies", nofail=True)
return
ctx.run(
f"poetry export -f requirements.txt --without-hashes | {safety} check --stdin --full-report",
title="Checking dependencies",
pty=PTY,
nofail=nofail,
)
@duty
def check_docs(ctx):
"""
Check if the documentation builds correctly.
Arguments:
ctx: The context instance (passed automatically).
"""
Path("build/coverage").mkdir(parents=True, exist_ok=True)
Path("build/coverage/index.html").touch(exist_ok=True)
# ctx.run("mkdocs build -s", title="Building documentation (skip for release)", pty=PTY)
@duty
def check_types(ctx):
"""
Check that the code is correctly typed.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run(
f"mypy --config-file config/mypy.ini {PY_SRC}", title="Type-checking", pty=PTY
)
@duty(silent=True)
def clean(ctx):
"""
Delete temporary files.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run("rm -rf .coverage*")
ctx.run("rm -rf .mypy_cache")
ctx.run("rm -rf .pytest_cache")
ctx.run("rm -rf tests/.pytest_cache")
ctx.run("rm -rf build")
ctx.run("rm -rf dist")
ctx.run("rm -rf pip-wheel-metadata")
ctx.run("rm -rf site")
ctx.run("find . -type d -name __pycache__ | xargs rm -rf")
ctx.run("find . -name '*.rej' -delete")
@duty
def docs(ctx):
"""
Build the documentation locally.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run("mkdocs build", title="Building documentation")
@duty
def docs_serve(ctx, host="127.0.0.1", port=8000):
"""
Serve the documentation (localhost:8000).
Arguments:
ctx: The context instance (passed automatically).
host: The host to serve the docs from.
port: The port to serve the docs on.
"""
ctx.run(
f"mkdocs serve -a {host}:{port}", title="Serving documentation", capture=False
)
@duty
def docs_deploy(ctx):
"""
Deploy the documentation on GitHub pages.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run("mkdocs gh-deploy", title="Deploying documentation")
@duty
def format(ctx):
"""
Run formatting tools on the code.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run(f"ssort {PY_SRC}", title="Ssort codebase", pty=PTY)
ctx.run(
f"autoflake -ir --exclude tests/fixtures --remove-all-unused-imports {PY_SRC}",
title="Removing unused imports",
pty=PTY,
)
ctx.run(f"isort {PY_SRC}", title="Ordering imports", pty=PTY)
ctx.run(f"black {PY_SRC}", title="Formatting code", pty=PTY)
@duty
def release(ctx, version):
"""
Release a new Python package.
Arguments:
ctx: The context instance (passed automatically).
version: The new version number to use.
"""
raise DeprecationWarning("This duty command is deprecated. See CONTRIBUTING.md")
@duty(silent=True)
def coverage(ctx):
"""
Report coverage as text and HTML.
Arguments:
ctx: The context instance (passed automatically).
"""
ctx.run("coverage combine .coverage-*", nofail=True)
ctx.run("coverage report --rcfile=config/coverage.ini", capture=False)
ctx.run("coverage html --rcfile=config/coverage.ini")
@duty
def test(ctx, match: str = ""):
"""
Run the test suite.
Arguments:
ctx: The context instance (passed automatically).
match: A pytest expression to filter selected tests.
"""
py_version = f"{sys.version_info.major}{sys.version_info.minor}"
os.environ["COVERAGE_FILE"] = f".coverage-{py_version}"
ctx.run(
"poetry run pytest -n auto -k".split() + [match, "tests"],
title="Running tests",
pty=PTY,
)