Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SPHINXBUILD = $(VENVDIR)/bin/sphinx-build
# there are duplicate labels. These cause warnings, which prevent the
# build from finishing. Turn off --fail-on-warning so we can see the
# finished results.
#SPHINXOPTS = --fail-on-warning --keep-going
SPHINXOPTS = --keep-going
#SPHINXOPTS = --fail-on-warning
SPHINXOPTS =
BUILDDIR = _build
BUILDER = html
JOBS = auto
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if "%PYTHON%" == "" (
)

set BUILDDIR=_build
set SPHINXOPTS=--fail-on-warning --keep-going
set SPHINXOPTS=--fail-on-warning
set _ALL_SPHINX_OPTS=%SPHINXOPTS%

if "%1" == "check" goto check
Expand Down
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Set-StrictMode -Version 3.0
$ErrorActionPreference = "Stop"

$BUILDDIR = "_build"
$SPHINXOPTS = "--fail-on-warning --keep-going"
$SPHINXOPTS = "--fail-on-warning"
$_ALL_SPHINX_OPTS = $SPHINXOPTS

$_PYTHON = $Env:PYTHON ?? "py -3"
Expand Down
Loading