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 a94312d commit 32565f9Copy full SHA for 32565f9
noxfile.py
@@ -97,15 +97,16 @@ def docs(session, builder):
97
argv = ["-n", "-T", "-W"]
98
if builder != "spelling":
99
argv += ["-q"]
100
+ posargs = session.posargs or [tmpdir / builder]
101
session.run(
102
"python",
103
"-m",
104
"sphinx",
105
"-b",
106
builder,
107
DOCS,
- tmpdir / builder,
108
*argv,
109
+ *posargs,
110
)
111
112
0 commit comments