diff options
author | fumihiko kakuma <kakuma@valinux.co.jp> | 2016-11-01 17:16:14 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-11-24 15:14:34 +0900 |
commit | 580f04d8a9f8017eb22e3d6fb9c736cabc3c9332 (patch) | |
tree | 94f330dffe2e4284606bb3f507ba4b9a352ab42b /tox.ini | |
parent | d4d02dd0f61dc33f40a099e076cfe0ed307b856f (diff) |
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>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |