mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-27 13:28:51 +07:00
* rm relaxed reqs and base constraints * move pins and requirements out of relaxed * sync requirements lock file * update noxfile to rm relaxed reqs * update docs * remove tagger session * Update tests/constraints.in Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
205 lines
5.4 KiB
Python
205 lines
5.4 KiB
Python
from __future__ import annotations
|
|
|
|
import os
|
|
import shlex
|
|
from glob import iglob
|
|
from pathlib import Path
|
|
from typing import cast
|
|
|
|
import nox
|
|
|
|
LINT_FILES: tuple[str, ...] = (
|
|
"hacking/pr_labeler/pr_labeler",
|
|
"noxfile.py",
|
|
*iglob("docs/bin/*.py"),
|
|
)
|
|
PINNED = os.environ.get("PINNED", "true").lower() in {"1", "true"}
|
|
nox.options.sessions = ("clone-core", "lint", "checkers", "make")
|
|
|
|
|
|
def _set_env_verbose(session: nox.Session, **env: str) -> dict[str, str]:
|
|
"""
|
|
Helper function to verbosely set environment variables
|
|
"""
|
|
final_env: dict[str, str] = {}
|
|
for key, value in env.items():
|
|
final_env[key] = value
|
|
session.log(f"export {key}={shlex.quote(value)}")
|
|
return final_env
|
|
|
|
|
|
def install(session: nox.Session, *args, req: str, **kwargs):
|
|
if PINNED:
|
|
pip_constraint = f"tests/{req}.txt"
|
|
# Set constraint environment variables for both pip and uv to support
|
|
# the nox uv backend
|
|
env = _set_env_verbose(
|
|
session,
|
|
PIP_CONSTRAINT=pip_constraint,
|
|
UV_CONSTRAINT=pip_constraint,
|
|
UV_BUILD_CONSTRAINT=pip_constraint,
|
|
)
|
|
kwargs.setdefault("env", {}).update(env)
|
|
session.install("-r", f"tests/{req}.in", *args, **kwargs)
|
|
|
|
|
|
@nox.session
|
|
def static(session: nox.Session):
|
|
"""
|
|
Run static checkers
|
|
"""
|
|
install(session, req="static")
|
|
session.run("ruff", "check", *session.posargs, *LINT_FILES)
|
|
|
|
|
|
@nox.session
|
|
def formatters(session: nox.Session):
|
|
"""
|
|
Reformat code
|
|
"""
|
|
install(session, req="formatters")
|
|
session.run("isort", *session.posargs, *LINT_FILES)
|
|
session.run("black", *session.posargs, *LINT_FILES)
|
|
|
|
|
|
@nox.session
|
|
def formatters_check(session: nox.Session):
|
|
"""
|
|
Check code formatting without making changes
|
|
"""
|
|
install(session, req="formatters")
|
|
session.run("isort", "--check", *session.posargs, *LINT_FILES)
|
|
session.run("black", "--check", *session.posargs, *LINT_FILES)
|
|
|
|
|
|
@nox.session
|
|
def typing(session: nox.Session):
|
|
install(session, req="typing")
|
|
session.run("mypy", *session.posargs, *LINT_FILES)
|
|
|
|
|
|
@nox.session
|
|
def spelling(session: nox.Session):
|
|
"""
|
|
Spell check RST documentation
|
|
"""
|
|
install(session, req="spelling")
|
|
session.run(
|
|
"codespell",
|
|
"docs/docsite",
|
|
*session.posargs,
|
|
)
|
|
|
|
|
|
@nox.session
|
|
def lint(session: nox.Session):
|
|
session.notify("typing")
|
|
session.notify("static")
|
|
session.notify("formatters")
|
|
session.notify("spelling")
|
|
|
|
|
|
requirements_files = list(
|
|
{path.name.replace(".in", "") for path in Path("tests").glob("*in")}
|
|
- {"constraints", "constraints-base"}
|
|
)
|
|
|
|
|
|
@nox.session(name="pip-compile", python="3.10")
|
|
@nox.parametrize(["req"], requirements_files, requirements_files)
|
|
def pip_compile(session: nox.Session, req: str):
|
|
# .pip-tools.toml was introduced in v7
|
|
# pip 24.3 causes a regression in pip-compile.
|
|
# See https://github.com/jazzband/pip-tools/issues/2131.
|
|
session.install("pip-tools >= 7", "pip < 24.3")
|
|
|
|
# Use --upgrade by default unless a user passes -P.
|
|
args = list(session.posargs)
|
|
|
|
# Support a custom --check flag to fail if pip-compile made any changes
|
|
# so we can check that that lockfiles are in sync with the input (.in) files.
|
|
check_mode = "--check" in args
|
|
if check_mode:
|
|
# Remove from args, as pip-compile doesn't actually support --check.
|
|
args.remove("--check")
|
|
elif not any(
|
|
arg.startswith(("-P", "--upgrade-package", "--no-upgrade")) for arg in args
|
|
):
|
|
args.append("--upgrade")
|
|
|
|
# fmt: off
|
|
session.run(
|
|
"pip-compile",
|
|
"--output-file", f"tests/{req}.txt",
|
|
*args,
|
|
f"tests/{req}.in",
|
|
)
|
|
# fmt: on
|
|
|
|
if check_mode and session.run("git", "diff", "tests", silent=True, external=True):
|
|
session.error("Check mode: files were changed")
|
|
|
|
|
|
@nox.session(name="clone-core")
|
|
def clone_core(session: nox.Session):
|
|
"""
|
|
Clone relevant portions of ansible-core from ansible/ansible into the current
|
|
source tree to facilitate building docs.
|
|
"""
|
|
session.run_always("python", "docs/bin/clone-core.py")
|
|
|
|
|
|
checker_tests = [
|
|
path.with_suffix("").name for path in Path("tests/checkers/").glob("*.py")
|
|
]
|
|
|
|
|
|
def _clone_core_check(session: nox.Session) -> None:
|
|
"""
|
|
Helper function to run the clone-core script with "--check"
|
|
"""
|
|
session.run("python", "docs/bin/clone-core.py", "--check")
|
|
|
|
|
|
def _env_python(session: nox.Session) -> str:
|
|
"""
|
|
Get the full path to an environment's python executable
|
|
"""
|
|
out = cast(
|
|
str,
|
|
session.run("python", "-c", "import sys; print(sys.executable)", silent=True),
|
|
)
|
|
return out.strip()
|
|
|
|
|
|
@nox.session
|
|
@nox.parametrize(["test"], checker_tests, checker_tests)
|
|
def checkers(session: nox.Session, test: str):
|
|
"""
|
|
Run docs build checkers
|
|
"""
|
|
|
|
install(session, req="requirements")
|
|
_clone_core_check(session)
|
|
session.run("make", "-C", "docs/docsite", "clean", external=True)
|
|
session.run("python", "tests/checkers.py", test)
|
|
|
|
|
|
@nox.session
|
|
def make(session: nox.Session):
|
|
"""
|
|
Generate HTML from documentation source using the Makefile
|
|
"""
|
|
make_args = session.posargs or ["clean", "coredocs"]
|
|
|
|
install(session, req="requirements")
|
|
_clone_core_check(session)
|
|
session.run(
|
|
"make",
|
|
"-C",
|
|
"docs/docsite",
|
|
f"PYTHON={_env_python(session)}",
|
|
*make_args,
|
|
external=True,
|
|
)
|