Petr Blaho 68db0cd9c1 Adds envlist to tox.ini for comfortable tox call
Change-Id: I2458cf545477cb04348bf73a2941461502f82876
2015-03-16 12:43:45 +00:00

26 lines
438 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = docs,pep8
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:pep8]
deps = bashate
whitelist_externals = bash
commands = bash -c "./run-bashate.sh"
[flake8]
ignore = H803
exclude = .tox