summaryrefslogtreecommitdiffhomepage
path: root/tox.ini
blob: d13f44459536759998b2bb76e477c1c2ff5be5dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py26,py27,py34,pypy,pep8

[testenv]
deps = -U
       -r{toxinidir}/tools/pip-requires
       -r{toxinidir}/tools/test-requires
       --no-cache-dir
usedevelop = True
passenv= NOSE_VERBOSE
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