-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnoxfile.py
50 lines (42 loc) · 1.01 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
import nox
nox.options.reuse_existing_virtualenvs = True
nox.options.default_venv_backend = "uv"
@nox.session(python="3.13")
def docs(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--no-dev",
"--group=docstest",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
temp_dir = session.create_tmp()
session.run(
"sphinx-build",
"-W",
"-b",
"html",
"-d",
f"{temp_dir}/doctrees",
"docs",
"docs/_build/html",
)
session.run("doc8", "docs/")
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
def tests(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
if session.posargs:
tests = session.posargs
else:
tests = ["tests/"]
session.run(
"coverage",
"run",
"-m",
"pytest",
*tests,
)