os-ken/tox.ini
IWAMOTO Toshihiro e83acc434d tox.ini: Be able to run python3 unit tests
With this change, you can run "tox -e py34" to test python3 compatibility.

Signed-off-by: IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2015-06-20 21:18:58 +09:00

20 lines
390 B
INI

[tox]
envlist = py26,py27,py34,pep8
[testenv]
deps = -U
-r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
usedevelop = True
commands =
python ryu/tests/run_tests.py '{posargs}'
[testenv:pep8]
commands =
pep8
[pep8]
exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib,dictconfig.py
ignore = E113,E116,E402,E711,E731,E501,W503