Skip to content

Commit a0c96b7

Browse files
committed
Add --keep-going to the Sphinx invocation
1 parent 072c72c commit a0c96b7

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
@@ -19,9 +19,11 @@ def build(session, autobuild=False):
1919
command = "sphinx-autobuild"
2020
extra_args = "-H", "0.0.0.0"
2121
else:
22+
# NOTE: This branch adds options that are unsupported by autobuild
2223
command = "sphinx-build"
2324
extra_args = (
24-
"--color", # colorize the output, unsupported by autobuild
25+
"--color", # colorize the output
26+
"--keep-going", # don't interrupt the build on the first warning
2527
)
2628

2729
session.run(

0 commit comments

Comments
 (0)