We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--keep-going
1 parent 072c72c commit a0c96b7Copy full SHA for a0c96b7
1 file changed
noxfile.py
@@ -19,9 +19,11 @@ def build(session, autobuild=False):
19
command = "sphinx-autobuild"
20
extra_args = "-H", "0.0.0.0"
21
else:
22
+ # NOTE: This branch adds options that are unsupported by autobuild
23
command = "sphinx-build"
24
extra_args = (
- "--color", # colorize the output, unsupported by autobuild
25
+ "--color", # colorize the output
26
+ "--keep-going", # don't interrupt the build on the first warning
27
)
28
29
session.run(
0 commit comments