2014-05-06 17:46:09 -04:00
|
|
|
[tox]
|
|
|
|
minversion = 1.6
|
|
|
|
envlist = docs
|
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
usedevelop = True
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
install_command = pip install -U {opts} {packages}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
|
|
|
[testenv:docs]
|
2019-05-30 21:08:52 +02:00
|
|
|
basepython = python3
|
2018-01-03 13:40:41 -06:00
|
|
|
commands = sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
|