Drop the skipsdist and usedevelop settings, they're not needed in this project anyway and have different side effects in newer Tox. Change-Id: I231815a9bb7ee81ec4e9f011d75a704fa471d6dd
15 lines
294 B
INI
15 lines
294 B
INI
[tox]
|
|
envlist = docs
|
|
minversion = 1.6
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
[testenv:docs]
|
|
commands = sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html
|
|
|
|
[testenv:venv]
|
|
commands = {[testenv:docs]commands}
|