-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathnoxfile.py
440 lines (310 loc) · 9.54 KB
/
noxfile.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# NOTE: A quick note on what Nox is used for specifically. Nox is used for
# anything that requires some sort of special virtual environment in order to
# operate. That includes creating standalone virtualenvs, and for single tasks
# requiring a specific environment. Nox should be considered an implementation
# detail of this however and all relevant high level targets should be still
# created in the Makefile. Furthermore, git hooks should reference those
# Makefile targets rather than the nox targets directly; keeping them decoupled.
# Of course feel free to use the nox targets if its easier.
# Standard Library
import itertools as it
import os
from pathlib import Path
# Third Party Library
import nox
# exclude the 'dev' session here so its not run automatically
nox.options.sessions = []
# NOTE: that with 3.11 mdtraj fails to build
DEFAULT_PYTHON_VERSION = "3.10"
PROJECT_ROOT_DIR = Path(__file__).parent
SRC_DIR = PROJECT_ROOT_DIR / "src"
SPHINX_SOURCE_DIR = PROJECT_ROOT_DIR / "sphinx"
SPHINX_BUILD_DIR = SPHINX_SOURCE_DIR / "_build"
# listing of things to be formatted and checked
FORMAT_TARGETS = [
"src",
"tests",
"noxfile.py",
SPHINX_SOURCE_DIR / "conf.py",
]
LINT_TARGETS = FORMAT_TARGETS
TYPECHECK_TARGETS = []
UNIT_TEST_DIRNAME = "unit"
### Helpers
def install_requirements(requirements_paths: list[str]) -> list[str]:
"""Given a list of requirements files generate the subprocess string for
installing all of them."""
return list(
it.chain(
*it.zip_longest(
[],
requirements_paths,
fillvalue="-r",
)
)
)
def install_interactive(session: nox.Session) -> None:
"""Install the standard set of interactive work dependencies, not useful in CI typically."""
session.install("-r", "dev/interactive.requirements.txt")
### Pinning
# which extras to generate pin files for
PIN_EXTRAS = [
"md",
"distributed",
"prometheus",
"graphics",
]
EXTRAS_REQUIREMENTS_MAP = {
"md": "requirements-md.txt",
"distributed": "requirements-distributed.txt",
"prometheus": "requirements-prometheus.txt",
}
def resolve_extras_reqfiles(extras: str) -> list[str]:
extras_items = extras.split(",")
extras_reqfiles = []
for extra in extras_items:
extras_reqfiles.append(EXTRAS_REQUIREMENTS_MAP[extra])
return extras_reqfiles
@nox.session
@nox.parametrize("extras", PIN_EXTRAS)
def pin(session, extras):
session.install("pip-deepfreeze")
session.run("pip-df", "sync", "--extras", ",".join(PIN_EXTRAS))
### Development Environment
# this VENV_DIR constant specifies the name of the dir that the `dev`
# session will create, containing the virtualenv;
# the `resolve()` makes it portable
DEV_VENV_DIR = Path("./.venv").resolve()
def external_venv(
session,
requirements_txt_list: list[str],
venv_path: Path = DEV_VENV_DIR,
):
session.install("virtualenv")
session.run("virtualenv", os.fsdecode(venv_path), silent=True)
python = os.fsdecode(venv_path.joinpath("bin/python"))
install_spec = install_requirements(requirements_txt_list)
session.run(
python,
"-m",
"pip",
"install",
*install_spec,
"-e",
".",
external=True,
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def dev_external(session: nox.Session) -> None:
"""Set up a development environment in the '.venv' top-level folder.
This development environment contains all dependencies needed for
development.
"""
mandatory_reqs = [
"requirements.txt",
"dev/qa.requirements.txt",
"dev/typechecking.requirements.txt",
"dev/testing.requirements.txt",
]
# we use all the extras for the dev environment
extras_reqs = list(EXTRAS_REQUIREMENTS_MAP.values())
base_reqs = mandatory_reqs + extras_reqs
if session.interactive:
reqs = base_reqs + ["dev/interactive.requirements.txt"]
else:
reqs = base_reqs
external_venv(
session,
reqs,
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
@nox.parametrize(
"extras",
[
"postgres",
"postgres-async",
"postgres,postgres-async",
],
)
def prod_external(
session: nox.Session,
extras: str,
) -> None:
extra_reqs = [f"requirements-{extra}.txt" for extra in extras.split(",")]
external_venv(
session,
["requirements.txt"] + extra_reqs,
)
### QA
## Base Functions
def _black_format(session):
session.run("black", *FORMAT_TARGETS)
def _isort_format(session):
session.run("isort", *FORMAT_TARGETS)
def _format(session):
_black_format(session)
_isort_format(session)
def _black_check(session):
session.run("black", "--check", *FORMAT_TARGETS)
def _isort_check(session):
session.run("isort", "--check", *FORMAT_TARGETS)
def _format_check(session):
_black_check(session)
_isort_check(session)
def _flake8(session):
session.run("flake8", *LINT_TARGETS)
def _interrogate(session):
session.run("interrogate", *LINT_TARGETS)
def _docstring_lint(session):
_interrogate(session)
def _lint(session):
_flake8(session)
def _typecheck(session):
session.run("mypy", "--strict", *TYPECHECK_TARGETS)
def qa_install(session):
install_spec = install_requirements(
[
"dev/qa.requirements.txt",
]
)
session.install(*install_spec)
## Fine Grained Sessions
@nox.session
def black_check(session):
qa_install(session)
_black_check(session)
@nox.session
def isort_check(session):
qa_install(session)
_isort_check(session)
@nox.session
def format_check(session):
qa_install(session)
_format_check(session)
@nox.session
def flake8(session):
qa_install(session)
_flake8(session)
@nox.session
def interrogate(session):
qa_install(session)
_interrogate(session)
@nox.session
def docstring_lint(session):
qa_install(session)
_docstring_lint(session)
@nox.session
def lint(session):
qa_install(session)
_lint(session)
## Top-Level Targets
@nox.session
def validate(session: nox.Session) -> None:
"""Run all static analysis QA checks."""
qa_install(session)
_format_check(session)
_lint(session)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def typecheck(session):
"""Run typechecking for the project."""
install_spec = install_requirements(
[
"dev/typechecking.requirements.txt",
]
)
session.install(*install_spec, "-e", ".")
_typecheck(session)
@nox.session
def format(session):
"""Run formatting on the code."""
qa_install(session)
_format(session)
### Tests
@nox.session(python=DEFAULT_PYTHON_VERSION)
def tests_unit(
session: nox.Session,
) -> None:
"""Run the unit tests, generate the coverage database and the HTML report."""
install_spec = install_requirements(
[
"dev/testing.requirements.txt",
"requirements.txt",
# we add all the extras in as well, we don't use them
# inappropriately though!
"requirements-distributed.txt",
"requirements-md.txt",
"requirements-prometheus.txt",
]
)
session.install(*install_spec, "-e", ".")
if session.interactive:
install_interactive(session)
session.run(
"pytest",
"-s",
# modern way of importing stuff, use with `pythonpath` option in pytest.ini
"--import-mode=importlib",
"--cov-report=term-missing:skip-covered",
"--cov=wepy",
# for this stage don't fail on missing coverage
"--cov-fail-under=0",
# the pointer plugin, collect covered modules
# "--pointers-collect=src",
# "--pointers-report",
# "--pointers-func-min-pass=1",
# "--pointers-fail-under=100",
# # block the loading of the integration test plugins
# "-p",
# "no:local_test_utils.plugins.database",
# f"tests/{UNIT_TEST_DIRNAME}",
"tests/unit/test_work_mapper",
)
session.run("coverage", "html", "--fail-under=100", "--skip-covered")
@nox.session(python=DEFAULT_PYTHON_VERSION)
def coverage(session):
"""Check that the coverage generated by unit tests passes."""
# TODO: add a way to report the unit coverage as well
session.install("coverage")
session.run("coverage", "html", "--skip-covered")
session.run(
"coverage",
"report",
"--fail-under=100",
"--data-file=.coverage",
"--show-missing",
)
# TODO: integration, benchmark, acceptance, and docs tests
# TODO: build documentation
## Builds & Releases
@nox.session(python=DEFAULT_PYTHON_VERSION)
def build(session):
session.install("hatch")
session.run("hatch", "build")
@nox.session(python=DEFAULT_PYTHON_VERSION)
def bumpversion(session):
session.install("hatch")
if session.posargs:
assert len(session.posargs) == 1, "Too many arguments only need 1."
part = session.posargs[0]
assert part in (
"major",
"minor",
"patch",
), "Must choose a valid bump part ('major', 'minor', 'patch')"
else:
part = "patch"
session.run("hatch", "version", part)
# NOTE: this is the current owner of the PyPI package contact my email above for
# more info
PYPI_USER = "salotz"
@nox.session(python=DEFAULT_PYTHON_VERSION)
def publish(session):
session.install("hatch")
session.run(
"hatch",
"-v",
"publish",
env={
"HATCH_INDEX_USER": PYPI_USER,
},
)