[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