summaryrefslogtreecommitdiffhomepage
path: root/tox.ini
blob: 6397d96652ce41fc001d39e722095cda21281502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tox]
envlist = py27,py34,py35,pypy26,pep8

[testenv]
deps = -U
       -r{toxinidir}/tools/pip-requires
       -r{toxinidir}/tools/optional-requires
       -r{toxinidir}/tools/test-requires
       --no-cache-dir
usedevelop = True
passenv= NOSE_VERBOSE
commands =
  coverage run --source=ryu ryu/tests/run_tests.py '{posargs}'

[testenv:scenario]
commands =
  bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh
  python ryu/tests/integrated/run_test.py

[testenv:py27]
commands =
  {[testenv]commands}
  {[testenv:scenario]commands}

[testenv:py34]
commands =
  {[testenv]commands}
  {[testenv:scenario]commands}

[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