-
Notifications
You must be signed in to change notification settings - Fork 4
/
noxfile.py
61 lines (46 loc) · 1.85 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
"""Automation using nox."""
import glob
import os
from pathlib import Path
import nox
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.10"],
)
def tests(session: nox.Session) -> None:
session.install(".[dev]")
env = {
"COVERAGE_FILE": f".coverage.{session.python}",
"COVERAGE_PROCESS_START": os.fspath(Path.cwd() / "pyproject.toml"),
}
# pytest loads plugin before the test is run, so we have to start coverage
# before pytest loads.
session.run("coverage", "run", "-m", "pytest", *session.posargs, env=env)
session.run("coverage", "combine", env=env)
session.run("coverage", "report", env=env)
if os.getenv("COVERAGE_XML"):
session.run("coverage", "xml", "-o", "coverage.xml", env=env)
@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("build", "setuptools", "twine")
session.run("python", "-m", "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", ".[all,dev]", external=True)