Enable to run a scenario test with a specific python version

Signed-off-by: Fumihiko Kakuma <kakuma@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
fumihiko kakuma 2016-11-01 17:16:14 +09:00 committed by FUJITA Tomonori
parent d4d02dd0f6
commit 580f04d8a9
1 changed files with 13 additions and 0 deletions

13
tox.ini
View File

@ -11,9 +11,22 @@ 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