oslo.config/tox.ini
Davanum Srinivas 1c03572172 Advertise support for Python3.4 / Remove support for 3.3
Change-Id: Icdc1059b94e6f7c27e7d9760cacaa58b87ebc598
2015-05-10 19:14:49 -04:00

28 lines
530 B
INI

[tox]
distribute = False
envlist = py34,py26,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
commands =
python setup.py testr --coverage
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
exclude = .tox,dist,doc,*.egg,build