Skip to content

Commit 3a11322

Browse files
authored
Merge pull request #862 from webknjaz/maintenance/sphinx-strict-warnings-keep-going
Add `--keep-going` to the Sphinx invocation
2 parents 94f6af7 + 194aec6 commit 3a11322

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)