We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336f434 commit 1b53145Copy full SHA for 1b53145
dev-requirements.txt
docs/requirements.txt
noxfile.py
@@ -23,7 +23,7 @@
23
@nox.session
24
def docs(session: nox.Session) -> None:
25
"""Build the documentation. Use `-- live` to build with a live server."""
26
- session.install("-r", "docs/requirements.txt")
+ session.install("--group", "docs")
27
session.install("-e", ".")
28
if "live" in session.posargs:
29
session.install("ipython")
@@ -39,5 +39,5 @@ def docs(session: nox.Session) -> None:
39
def test(session: nox.Session) -> None:
40
"""Run the test suite."""
41
42
- session.install("-r", "dev-requirements.txt")
+ session.install("--group", "test")
43
session.run("pytest", *session.posargs)
0 commit comments