From 375d3939329ecc224c6f7c27d338eef206faa78f Mon Sep 17 00:00:00 2001 From: zethson Date: Mon, 9 Sep 2024 13:57:02 +0200 Subject: [PATCH] :art: Docs instance Signed-off-by: zethson --- noxfile.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/noxfile.py b/noxfile.py index d2b83a8..d19afee 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,10 +1,6 @@ import nox -from laminci.nox import build_docs, login_testuser1, run_pre_commit, run_pytest +from laminci.nox import build_docs, login_testuser1, run, run_pre_commit, run_pytest -# we'd like to aggregate coverage information across sessions -# and for this the code needs to be located in the same -# directory in every github action runner -# this also allows to break out an installation section nox.options.default_venv_backend = "none" @@ -18,4 +14,5 @@ def build(session): session.run(*"uv pip install --system -e .[dev]".split()) login_testuser1(session) run_pytest(session) + run(session, "lamin init --storage ./docsbuild --schema bionty") build_docs(session, strict=True)