From 580f04d8a9f8017eb22e3d6fb9c736cabc3c9332 Mon Sep 17 00:00:00 2001 From: fumihiko kakuma Date: Tue, 1 Nov 2016 17:16:14 +0900 Subject: [PATCH] Enable to run a scenario test with a specific python version Signed-off-by: Fumihiko Kakuma Signed-off-by: FUJITA Tomonori --- tox.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tox.ini b/tox.ini index f87480aa..6397d966 100644 --- a/tox.ini +++ b/tox.ini @@ -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