specs-cookiecutter/{{cookiecutter.repo_name}}/tox.ini
Andreas Jaeger 9238dbe1c0 Update to openstackdocstheme
oslosphinx is dead, convert to openstackdocstheme and update for
python3.

Change-Id: I4e5abc8485103f5b830759056db24185670c5ec2
2020-06-09 07:04:43 +00:00

26 lines
501 B
INI

[tox]
minversion = 3.2.0
envlist = docs
skipsdist = True
[testenv]
basepython = python3
usedevelop = True
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = sphinx-build -W -b html doc/source doc/build/html
[testenv:spelling]
deps =
-r{toxinidir}/requirements.txt
sphinxcontrib-spelling
PyEnchant
commands = sphinx-build -b spelling doc/source doc/build/spelling