-
Notifications
You must be signed in to change notification settings - Fork 19
/
noxfile.py
69 lines (53 loc) · 1.82 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
"""Automation using nox."""
import glob
import os
import nox
nox.options.default_venv_backend = "uv|virtualenv"
nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = "lint", "tests"
@nox.session(
python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.8", "pypy3.9"]
)
def tests(session: nox.Session) -> None:
session.install(".[tests,cli]")
session.run(
"pytest",
"--cov",
"--cov-config=pyproject.toml",
*session.posargs,
env={"COVERAGE_FILE": f".coverage.{session.python}"},
)
@nox.session
def bench(session: nox.Session) -> None:
session.install(".[tests,cli]")
storage = os.getenv("PYTEST_BENCHMARK_STORAGE", "file://.benchmarks")
session.run(
"pytest",
"--benchmark-storage",
storage,
"--benchmark-only",
*session.posargs,
)
@nox.session
def lint(session: nox.Session) -> None:
session.install("pre-commit")
session.install("-e", ".[dev]")
args = *(session.posargs or ("--show-diff-on-failure",)), "--all-files"
session.run("pre-commit", "run", *args)
session.run("python", "-m", "mypy")
@nox.session
def build(session: nox.Session) -> None:
session.install("twine", "uv")
session.run("uv", "build")
dists = glob.glob("dist/*")
session.run("twine", "check", *dists, silent=True)
@nox.session
def dev(session: nox.Session) -> None:
"""Sets up a python development environment for the project."""
args = session.posargs or ("venv",)
venv_dir = os.fsdecode(os.path.abspath(args[0]))
session.log(f"Setting up virtual environment in {venv_dir}")
session.install("virtualenv")
session.run("virtualenv", venv_dir, silent=True)
python = os.path.join(venv_dir, "bin/python")
session.run(python, "-m", "pip", "install", "-e", ".[dev]", external=True)