stevedore/tox.ini
ChangBo Guo(gcb) 76c14b1051 Add Python 3.5 classifier and venv
Now that there is a passing gate job, we can claim support for
Python 3.5 in the classifier. This patch also adds the convenience
py35 venv.

Change-Id: I13d2453d9bd15ca3320968aa30f0fe9db13d717d
2016-07-12 17:26:23 +08:00

25 lines
444 B
INI

[tox]
envlist = py35,py34,py27,pep8,docs
[testenv]
deps =
-r{toxinidir}/test-requirements.txt
distribute = False
commands = python setup.py testr --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}
[testenv:pep8]
deps = flake8
ignore = E251
commands = flake8 stevedore setup.py
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
ignore = E251
show-source = True
exclude=.venv,.git,.tox,dist,*lib/python*,*egg,build