way/tox.ini
Jeremy Stanley 29bffae9b7 Initial boilerplate commit
Most of this was forklifted from openinfra/four-opens and adjusted
as needed. There is no actual content (yet).

Change-Id: I86b48af2e45c9a0694b3e1dbffa953ac9f4784c5
2022-08-01 17:53:27 +00:00

22 lines
397 B
INI

[tox]
minversion = 2.0
skipsdist = True
envlist = docs,linters
[testenv]
basepython = python3
setenv = VIRTUAL_ENV={envdir}
passenv = *_proxy *_PROXY ZUUL_*
[testenv:linters]
deps =
-r{toxinidir}/test-requirements.txt
commands =
doc8 doc/source
[testenv:docs]
deps =
-r{toxinidir}/test-requirements.txt
commands =
sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html