Make builder use tox template
[releng/builder.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = docs,pep8
4 skipsdist = true
5
6 [testenv:docs]
7 deps = sphinx
8 commands = sphinx-build -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
9
10 [testenv:pep8]
11 deps = flake8
12 commands = flake8 scripts/
13