6ab117db4f
Add the pep8 section to tox.ini and specify ignoring E113. Many E113 errors appeared on comments. It seems a bug of pep8, so it can be ignored. Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
14 lines
248 B
INI
14 lines
248 B
INI
[tox]
|
|
envlist = py26,py27
|
|
|
|
[testenv]
|
|
deps = -U
|
|
-r{toxinidir}/tools/pip-requires
|
|
-r{toxinidir}/tools/test-requires
|
|
commands =
|
|
python ryu/tests/run_tests.py
|
|
|
|
[pep8]
|
|
exclude = vcsversion.py,.pyc,ryu/contrib,dictconfig.py
|
|
ignore = E113
|