Skip to content

Commit 11e3039

Browse files
committed
sphinx apparently does not play well with multiple build targets in a single command: change the "docs" build comamnd to run the html build and the link check in separate commands
1 parent 2d3d289 commit 11e3039

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,8 @@ commands =
259259
basepython = python3
260260
deps = -rdoc/requirements.txt
261261
commands =
262-
sphinx-build -E -c doc/ -b html -b linkcheck doc/ doc/build/html
262+
sphinx-build -E -c doc/ -b html doc/ doc/build/html
263+
sphinx-build -E -c doc/ -b linkcheck doc/ doc/build/html
263264

264265
[testenv:serve-docs]
265266
basepython = python3

0 commit comments

Comments
 (0)