publiccloud-sig/tox.ini
Andreas Jaeger 5febf9bb26 Update testing
Remove python jobs, there's no code here, so nothing to test.
Update docs invocation to the "modern" way.
Fix .gitreview

Change-Id: Idab8bb781ab8aa31407f07d5b7eaa410dabf9dd8
2020-01-13 20:34:59 +01:00

21 lines
444 B
INI

[tox]
minversion = 1.4
envlist = docs
skipsdist = True
[testenv]
basepython = python3
usedevelop = True
setenv = VIRTUAL_ENV={envdir}
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands =
sphinx-build -W --keep-going -b html -d doc/build/doctrees doc/source doc/build/html