-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.py
More file actions
203 lines (160 loc) · 4.31 KB
/
tasks.py
File metadata and controls
203 lines (160 loc) · 4.31 KB
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
from collections.abc import Callable
from pathlib import Path
from typing import Any
from invoke import Collection, Context, task # pyright: ignore[reportPrivateImportUsage]
##########################
# Version management tasks
@task
def set_version(c: Context, version: str):
_run_multiple_tasks(
c,
(
set_version_pyproject,
set_version_python,
),
version,
)
@task
def set_version_pyproject(c: Context, version: str):
print("Update version in pyproject.toml")
c.run(f"uv version {version}")
@task
def set_version_python(_: Context, version: str):
print("Update version in __version__.py")
version_file_path = Path("./src/CacheLibrary/__version__.py")
with version_file_path.open(mode="w") as f:
f.write(f'__version__ = "{version}"\n')
print(f"Replaced {version_file_path.as_posix()}")
#############
# Build tasks
@task
def build(c: Context):
_run_multiple_tasks(
c,
(
lint,
test,
build_source,
build_docs,
),
)
@task
def build_source(c: Context):
c.run("uv build --clear")
@task
def build_docs(c: Context):
c.run("uv run libdoc src/CacheLibrary docs/index.html")
##########
# QA tasks
@task
def lint(c: Context):
c.run("uv run ruff check")
@task
def test(c: Context):
_run_multiple_tasks(
c,
(
test_integration_sync,
test_integration_parallel_suite_level,
test_integration_parallel_test_level,
test_acceptance_sync,
test_acceptance_parallel_suite_level,
test_acceptance_parallel_test_level,
),
)
@task
def test_integration(c: Context):
_run_multiple_tasks(
c,
(
test_integration_sync,
test_integration_parallel_suite_level,
test_integration_parallel_test_level,
),
)
@task
def test_integration_sync(c: Context):
print("Integration tests: Synchronous")
c.run("uv run robot --listener RetryFailed test/integration")
@task
def test_integration_parallel_suite_level(c: Context):
print("Integration tests: Parallel, Suite level split")
c.run("uv run pabot --pabotlib --listener RetryFailed test/integration")
@task
def test_integration_parallel_test_level(c: Context):
print("Integration tests: Parallel, Test level split")
c.run(
"uv run pabot --testlevelsplit --pabotlib --listener RetryFailed test/integration",
)
@task
def test_acceptance(c: Context):
_run_multiple_tasks(
c,
(
test_acceptance_sync,
test_acceptance_parallel_suite_level,
test_acceptance_parallel_test_level,
),
)
@task
def test_acceptance_sync(c: Context):
print("Acceptance tests: Synchronous")
c.run("uv run robot test/acceptance/run.robot")
@task
def test_acceptance_parallel_suite_level(c: Context):
print("Acceptance tests: Parallel, Suite level split")
c.run("uv run pabot --pabotlib test/acceptance/run.robot")
@task
def test_acceptance_parallel_test_level(c: Context):
print("Acceptance tests: Parallel, Test level split")
c.run("uv run pabot --testlevelsplit --pabotlib test/acceptance/run.robot")
#############
# Task config
ns = Collection(
build,
build_source,
build_docs,
set_version,
set_version_pyproject,
set_version_python,
lint,
test,
test_integration,
test_integration_sync,
test_integration_parallel_suite_level,
test_integration_parallel_test_level,
test_acceptance,
test_acceptance_sync,
test_acceptance_parallel_suite_level,
test_acceptance_parallel_test_level,
)
ns.configure(
{
"run": {
"echo": True,
"echo_format": "> {command}",
},
},
)
#########
# Helpers
def _run_multiple_tasks(
c: Context,
tasks: tuple[Callable, ...],
*args: Any, # noqa: ANN401
**kwargs: Any, # noqa: ANN401
) -> None:
print(f"Running {len(tasks)} tasks...")
for t in tasks:
print()
print("--- task " + t.__name__ + " ---")
print()
try:
t(c, *args, **kwargs)
except Exception:
print("FAILED task " + t.__name__)
raise
print()
print("-" * 20)
print()
print(f"Ran {len(tasks)} tasks")