We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e227a9 commit fdbe762Copy full SHA for fdbe762
1 file changed
noxfile.py
@@ -129,6 +129,7 @@ def test(session: nox.Session) -> None:
129
130
@nox.session
131
def docs(session: nox.Session) -> None:
132
+ session.install("-e", ".")
133
session.install("--group", "docs")
134
135
def get_sphinx_build_command(kind: str) -> list[str]:
@@ -158,6 +159,7 @@ def get_sphinx_build_command(kind: str) -> list[str]:
158
159
160
@nox.session(name="docs-live")
161
def docs_live(session: nox.Session) -> None:
162
163
session.install("--group", "docs", "sphinx-autobuild")
164
165
session.run(
0 commit comments