2013-08-29 11:31:50 +09:00
|
|
|
[tox]
|
2014-10-14 10:34:55 +09:00
|
|
|
envlist = py26,py27,pep8
|
2013-08-29 11:31:50 +09:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps = -U
|
|
|
|
-r{toxinidir}/tools/pip-requires
|
|
|
|
-r{toxinidir}/tools/test-requires
|
|
|
|
commands =
|
2015-04-27 14:35:47 +09:00
|
|
|
python ryu/tests/run_tests.py '{posargs}'
|
2014-05-13 19:05:33 +09:00
|
|
|
|
2014-10-14 10:34:55 +09:00
|
|
|
[testenv:pep8]
|
|
|
|
commands =
|
|
|
|
pep8
|
|
|
|
|
2014-05-13 19:05:33 +09:00
|
|
|
[pep8]
|
2014-10-14 10:34:55 +09:00
|
|
|
exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib,dictconfig.py
|
2015-02-16 12:05:20 +09:00
|
|
|
ignore = E113,E116,E402,E711,E731,E501,W503
|
2015-02-08 12:31:56 +09:00
|
|
|
|