Files
ossa/tox.ini
Jeremy Stanley 8e1ff97004 Update tox.ini for compatibility with Tox 4.x
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
2023-01-17 14:35:03 +00:00

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}