blob: 388494b961bcfbce6b2eee7b36baa95371607a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[tox]
envlist = py26,py27,pep8
[testenv]
deps = -U
-r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
commands =
python ryu/tests/run_tests.py
[testenv:pep8]
commands =
pep8
[pep8]
exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib,dictconfig.py
ignore = E113
|