Skip to content

Commit 6356b67

Browse files
authored
Merge pull request #722 from frog-o/cont-python
modified: source/contribute.rst to add document for local python se…
2 parents e5a160c + e4e98d4 commit 6356b67

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ def build(session, autobuild=False):
1717

1818
if autobuild:
1919
command = "sphinx-autobuild"
20+
extra_args = "-H", "0.0.0.0"
2021
else:
2122
command = "sphinx-build"
23+
extra_args = ()
2224

23-
session.run(command, "-W", "-b", "html", "source", "build")
25+
session.run(command, *extra_args, "-W", "-b", "html", "source", "build")
2426

2527

2628
@nox.session(py="3")

0 commit comments

Comments
 (0)