ucast/docs/tox.ini
ThetaDev fff882894f
All checks were successful
continuous-integration/drone/push Build is passing
add sphinx project
2022-06-29 22:41:57 +02:00

20 lines
394 B
INI

[tox]
skipsdist = True
envlist =
html
pdf
[testenv]
description = Dokumentation bauen
deps = -r{toxinidir}/requirements.txt
[testenv:html]
commands = sphinx-build -b html -d build/doctrees . build/html
[testenv:pdf]
allowlist_externals = make
commands = make latexpdf
[testenv:live]
description = Live update mit sphinx-autobuild
commands = sphinx-autobuild . build/html --open-browser