os-ken/tox.ini
Yoshihiro Kaneko 6ab117db4f add pep8 options to tox.ini
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>
2014-05-14 15:39:33 +09:00

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