mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
Adding --keep-going flag to sphinx-build so all lint failures are listed in CI (#27068)
This PR adds --keep-going flag to the make html target for building the Ray docs. This means that when there is a lint failure in CI, the BuildKite log will show all lint failures instead of just the first one. Despite continuing past the first lint error, it will still fail the build. Signed-off-by: Cade Daniel <cade@anyscale.com>
This commit is contained in:
parent
73e1632599
commit
0374637e53
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ clean:
|
|||
rm -rf $(BUILDDIR)/*
|
||||
|
||||
html:
|
||||
$(SPHINXBUILD) -W -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||
$(SPHINXBUILD) -W --keep-going -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||
@echo
|
||||
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue