-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
noxfile.py
168 lines (128 loc) · 4 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
from __future__ import annotations
import os
import nox
nox.needs_version = ">=2024.3.2"
nox.options.default_venv_backend = "uv|virtualenv"
nox.options.reuse_existing_virtualenvs = True
nox.options.error_on_external_run = True
RUN_UNDER_COVERAGE = ["3.8", "3.12"]
ALL_SUPPORTED = [
# [[[cog
# for line in open("pyproject.toml"):
# if "Programming Language :: Python :: " in line:
# cog.outl(f'"{line.rsplit(" ")[-1][:-3]}",')
# ]]]
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
# [[[end]]]
]
OLDEST_PYTHON = ALL_SUPPORTED[0]
NOT_COVERAGE = [v for v in ALL_SUPPORTED if v not in RUN_UNDER_COVERAGE]
# [[[cog
# import yaml
# with open(".readthedocs.yaml") as f:
# rtd = yaml.safe_load(f)
# cog.outl(f'DOCS_PYTHON = "{rtd["build"]["tools"]["python"]}"')
# ]]]
DOCS_PYTHON = "3.12"
# [[[end]]]
# [[[cog
# import tomllib
# with open("pyproject.toml", "rb") as f:
# deps = tomllib.load(f)["project"]["dependencies"]
# for dep in deps:
# if dep.startswith("attrs"):
# cog.outl(f'OLDEST_ATTRS = "{dep[7:]}"')
# break
# ]]]
OLDEST_ATTRS = "17.4.0"
# [[[end]]]
@nox.session
def cog(session: nox.Session) -> None:
session.install("cogapp", "PyYAML")
session.run(
"cog", *session.posargs, "-r", "noxfile.py", ".github/workflows/ci.yml"
)
@nox.session
def pre_commit(session: nox.Session) -> None:
session.install("pre-commit")
session.run("pre-commit", "run", "--all-files")
def _get_pkg(posargs: list[str]) -> tuple[str, list[str]]:
"""
Allow `--installpkg path/to/wheel.whl` to be passed.
"""
posargs = list(posargs)
try:
i = posargs.index("--installpkg")
pkg = posargs[i + 1]
del posargs[i : i + 2]
except ValueError:
pkg = "."
return pkg, posargs
def _cov(session: nox.Session, posargs: list[str]) -> None:
session.run("coverage", "run", "-m", "pytest", *posargs)
if os.environ.get("CI") != "true":
session.notify("coverage_report")
@nox.session(python=RUN_UNDER_COVERAGE, tags=["tests"])
def tests_cov(session: nox.Session) -> None:
pkg, posargs = _get_pkg(session.posargs)
session.install(f"{pkg}[cov]")
_cov(session, posargs)
@nox.session(python=NOT_COVERAGE, tags=["tests"])
def tests(session: nox.Session) -> None:
pkg, posargs = _get_pkg(session.posargs)
session.install(f"{pkg}[tests]")
session.run("pytest", *posargs)
@nox.session(python=OLDEST_PYTHON, tags=["tests"])
def tests_oldest_attrs(session: nox.Session) -> None:
pkg, posargs = _get_pkg(session.posargs)
session.install(f"{pkg}[cov]", f"attrs=={OLDEST_ATTRS}")
_cov(session, posargs)
@nox.session
def coverage_report(session: nox.Session) -> None:
session.install("coverage[toml]")
session.run("coverage", "combine")
session.run("coverage", "report", "--fail-under=100")
@nox.session
def mypy(session: nox.Session) -> None:
session.install(".", "mypy")
session.run("mypy", "tests/typing")
@nox.session(python=DOCS_PYTHON)
def docs(session: nox.Session) -> None:
if session.posargs and session.posargs[0] == "watch":
session.install("-e", ".[docs]", "watchfiles")
session.run(
"watchfiles",
"--ignore-paths",
"docs/_build",
"python -Im sphinx "
"-T -E "
"-W --keep-going "
"-b html "
"-d docs/_build/doctrees "
"-D language=en "
"-n "
"docs "
"docs/_build/html",
)
return
session.install(".[docs]")
for cmd in (
[session.posargs[0]] if session.posargs else ["html", "doctest"]
):
session.run(
"python", "-m", "sphinx",
"-T", "-E",
"-W", "--keep-going",
"-b", cmd,
"-d", "docs/_build/doctrees",
"-D", "language=en",
"-n",
"docs",
"docs/_build/html",
) # fmt: skip
session.run("python", "-m", "doctest", "README.md")