documentation/tox.ini
Dmitriy Rabotyagov e941e9c145 Initial commit
Adds basic sceleton and  CI jobs.

Change-Id: I2c59bdd1e56d9e82cf2c1f11068ce490e7dcfadb
2020-05-06 18:09:37 +03:00

27 lines
432 B
INI

[tox]
minversion = 3.1.1
envlist = docs
skipsdist = True
[testenv]
basepython = python3
usedevelop = False
passenv =
OS_*
deps =
-rtest-requirements.txt
commands =
stestr run {posargs}
stestr slowest
[doc8]
# Settings for doc8:
extensions = .rst
[testenv:docs]
deps =
-r{toxinidir}/doc/requirements.txt
commands =
doc8 doc/source
sphinx-build -W --keep-going -b html -d doc/build/doctrees doc/source doc/build/html