-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathnoxfile.py
More file actions
230 lines (202 loc) · 7.19 KB
/
Copy pathnoxfile.py
File metadata and controls
230 lines (202 loc) · 7.19 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
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
# > UV requires Python >= 3.8. So we cannot test any version older than that (not that we would want to anyway!).
import os
# > External packages
import nox
# > Don't update lock file when setting up virtual envs.
os.environ.update({"UV_FROZEN": "1"})
# > Disable automatic donwload of Python distributions
os.environ.update({"UV_PYTHON_DOWNLOADS": "never"})
# > Making sure Nox session only see their packages and not any globally installed packages.
os.environ.pop("PYTHONPATH", None)
# > Hiding any virtual environments from outside.
os.environ.pop("VIRTUAL_ENV", None)
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# GLOBAL NOX OPTIONS
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# > Stop after first session that fails.
# > Can be turned off with '--no-stop-on-first-error'
nox.options.stop_on_first_error = True
# > NOX can detect if a binary is called from outside the currently running session.
# > Make sure we use that the binary from the session specific virtual environment.
nox.options.error_on_external_run = True
# > Mark sessions as failed if NOX cannot find the desired Python interpreter.
# > By default, NOX just skips these sessions.
nox.options.error_on_missing_interpreters = True
# > Always start from a clean environment.
nox.options.reuse_existing_virtualenvs = True
# > Using "uv" instead of "venv" as default backend
nox.options.default_venv_backend = "uv"
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# NOX SESSIONS
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# //////////////////////////////////////////
# /// UNIT TESTS: pytest ///
# //////////////////////////////////////////
@nox.session(default=False)
def unit_tests(session):
session.run_install(
"uv",
"sync",
"--group",
"tests",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("pytest","-m unit", *session.posargs)
@nox.session(default=False)
def tests(session):
session.run_install(
"uv",
"sync",
"--group",
"tests",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("pytest", *session.posargs)
@nox.session(default=False)
def json_gen(session):
session.run_install(
"uv",
"sync",
"--group",
"tests",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("pytest","-m json_files","--update-json-files", *session.posargs)
@nox.session(default=False)
def out_gen(session):
session.run_install(
"uv",
"sync",
"--group",
"tests",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("pytest","-m out_files","--update-out-files", *session.posargs)
# //////////////////////////////////////////
# /// STATIC TYPE CHECKING: mypy ///
# //////////////////////////////////////////
@nox.session(tags=["static_check", "pr_check"])
def type_check(session):
session.run_install(
"uv",
"sync",
"--group",
"type_check",
"--all-extras",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("mypy")
# //////////////////////////////////////////////////
# /// REMOVING UNUSED IMPORTS: Ruff ///
# ////////////////////////////////////////////////
@nox.session(tags=["style", "fix", "static_check"])
def remove_unused_imports(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
# > Sorting imports with ruff instead of isort
session.run("ruff", "check", "--select", "F401", "--fix", "--exit-non-zero-on-fix")
@nox.session(tags=["pr_check"], default=False)
def check_unused_imports(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("ruff", "check", "--select", "F401")
# //////////////////////////////////////////
# /// SORTING IMPORTS: Ruff ///
# //////////////////////////////////////////
@nox.session(tags=["style", "fix", "static_check"])
def sort_imports(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
# > Sorting imports with ruff instead of isort
session.run("ruff", "check", "--select", "I", "--fix", "--exit-non-zero-on-fix")
@nox.session(tags=["pr_check"])
def check_sort_imports(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
# > Sorting imports with ruff instead of isort
session.run("ruff", "check", "--select", "I")
# ////////////////////////////////////////
# /// LINTING: Ruff ///
# ////////////////////////////////////////
@nox.session(tags=["style", "static_check", "pr_check"])
def lint(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("ruff", "check")
# //////////////////////////////////////////
# /// CODE FORMATTING: Ruff ///
# //////////////////////////////////////////
@nox.session(tags=["style", "fix", "static_check"])
def format_code(session):
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("ruff", "format", "--exit-non-zero-on-format")
@nox.session(tags=["pr_check"])
def check_format_code(session):
"""
Only check if code was formatted with Ruff.
"""
session.run_install(
"uv",
"sync",
"--group",
"lint",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("ruff", "format", "--check")
# ////////////////////////////////////////////////////
# /// SPELL CHECKING: codespell ///
# ////////////////////////////////////////////////////
@nox.session(tags=["static_check", "pr_check"])
def spell_check(session):
session.run_install(
"uv",
"sync",
"--group",
"spell-check",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("codespell", "src/opi")
# //////////////////////////////////////////////
# /// DEAD CODE: vulture ///
# /////////////////////////////////////////////
@nox.session(tags=["static_check", "pr_check"], default=True)
def dead_code(session):
session.run_install(
"uv",
"sync",
"--group",
"dead-code",
env={"UV_PROJECT_ENVIRONMENT": session.virtualenv.location},
)
session.run("vulture")