We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f9932c commit 1787dc4Copy full SHA for 1787dc4
1 file changed
noxfile.py
@@ -161,9 +161,9 @@ def docs(session: PowerSession):
161
162
if session.posargs:
163
# use posargs instead of "serve"
164
- session.run2("mkdocs -f ./docs/mkdocs.yml %s" % " ".join(session.posargs))
+ session.run2("mkdocs %s" % " ".join(session.posargs))
165
else:
166
- session.run2("mkdocs serve -f ./docs/mkdocs.yml")
+ session.run2("mkdocs serve")
167
168
169
@power_session(python=[PY37])
0 commit comments