noxfile.py 2.67 KB
Newer Older
Henry Schreiner's avatar
Henry Schreiner committed
1
2
import os

3
4
import nox

Henry Schreiner's avatar
Henry Schreiner committed
5
nox.needs_version = ">=2022.1.7"
6
7
nox.options.sessions = ["lint", "tests", "tests_packaging"]

8
9
10
11
12
13
14
15
16
17
18
PYTHON_VERSIONS = [
    "3.6",
    "3.7",
    "3.8",
    "3.9",
    "3.10",
    "3.11",
    "pypy3.7",
    "pypy3.8",
    "pypy3.9",
]
Henry Schreiner's avatar
Henry Schreiner committed
19
20
21

if os.environ.get("CI", None):
    nox.options.error_on_missing_interpreters = True
22

23
24
25
26
27
28
29
30
31
32

@nox.session(reuse_venv=True)
def lint(session: nox.Session) -> None:
    """
    Lint the codebase (except for clang-format/tidy).
    """
    session.install("pre-commit")
    session.run("pre-commit", "run", "-a")


33
@nox.session(python=PYTHON_VERSIONS)
34
35
36
37
38
def tests(session: nox.Session) -> None:
    """
    Run the tests (requires a compiler).
    """
    tmpdir = session.create_tmp()
39
40
    session.install("cmake")
    session.install("-r", "tests/requirements.txt")
41
42
    session.run(
        "cmake",
Henry Schreiner's avatar
Henry Schreiner committed
43
44
        "-S.",
        f"-B{tmpdir}",
45
46
47
        "-DPYBIND11_WERROR=ON",
        "-DDOWNLOAD_CATCH=ON",
        "-DDOWNLOAD_EIGEN=ON",
Henry Schreiner's avatar
Henry Schreiner committed
48
        *session.posargs,
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
    )
    session.run("cmake", "--build", tmpdir)
    session.run("cmake", "--build", tmpdir, "--config=Release", "--target", "check")


@nox.session
def tests_packaging(session: nox.Session) -> None:
    """
    Run the packaging tests.
    """

    session.install("-r", "tests/requirements.txt", "--prefer-binary")
    session.run("pytest", "tests/extra_python_package")


@nox.session(reuse_venv=True)
def docs(session: nox.Session) -> None:
    """
    Build the docs. Pass "serve" to serve.
    """

    session.install("-r", "docs/requirements.txt")
    session.chdir("docs")
72
73

    if "pdf" in session.posargs:
Henry Schreiner's avatar
Henry Schreiner committed
74
        session.run("sphinx-build", "-M", "latexpdf", ".", "_build")
75
76
        return

Henry Schreiner's avatar
Henry Schreiner committed
77
    session.run("sphinx-build", "-M", "html", ".", "_build")
78

79
80
81
82
83
    if "serve" in session.posargs:
        session.log("Launching docs at http://localhost:8000/ - use Ctrl-C to quit")
        session.run("python", "-m", "http.server", "8000", "-d", "_build/html")
    elif session.posargs:
        session.error("Unsupported argument to docs")
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101


@nox.session(reuse_venv=True)
def make_changelog(session: nox.Session) -> None:
    """
    Inspect the closed issues and make entries for a changelog.
    """
    session.install("ghapi", "rich")
    session.run("python", "tools/make_changelog.py")


@nox.session(reuse_venv=True)
def build(session: nox.Session) -> None:
    """
    Build SDists and wheels.
    """

    session.install("build")
102
    session.log("Building normal files")
103
    session.run("python", "-m", "build", *session.posargs)
104
    session.log("Building pybind11-global files (PYBIND11_GLOBAL_SDIST=1)")
105
106
107
    session.run(
        "python", "-m", "build", *session.posargs, env={"PYBIND11_GLOBAL_SDIST": "1"}
    )