-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
56 lines (41 loc) · 1.55 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
"""Automation using nox."""
from pathlib import Path
import nox
nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = "lint", "tests"
nox.options.default_venv_backend = "uv"
locations = "src", "tests"
versions = ["3.9", "3.10", "3.11", "3.12"]
@nox.session(python=versions)
def tests(session: nox.Session) -> None:
session.install(".[tests]")
session.run(
"pytest",
"--cov",
"--cov-config=pyproject.toml",
*session.posargs,
env={"COVERAGE_FILE": f".coverage.{session.python}"},
)
@nox.session(python=versions)
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(python=versions)
def build(session: nox.Session) -> None:
session.install("build", "setuptools", "twine")
session.run("python", "-m", "build")
dists = Path("dist").glob("*")
session.run("twine", "check", *dists, silent=True)
@nox.session(python=versions)
def dev(session: nox.Session) -> None:
"""Set up a python development environment for the project."""
args = session.posargs or ("venv",)
venv_dir = Path(args[0])
session.log(f"Setting up virtual environment in {venv_dir}")
session.install("virtualenv")
session.run("virtualenv", venv_dir, silent=True)
python = venv_dir / "bin/python"
session.run(python, "-m", "pip", "install", "-e", ".[dev]", external=True)