summaryrefslogtreecommitdiffhomepage
path: root/tox.ini
diff options
context:
space:
mode:
authorfumihiko kakuma <kakuma@valinux.co.jp>2016-11-01 17:16:14 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-11-24 15:14:34 +0900
commit580f04d8a9f8017eb22e3d6fb9c736cabc3c9332 (patch)
tree94f330dffe2e4284606bb3f507ba4b9a352ab42b /tox.ini
parentd4d02dd0f61dc33f40a099e076cfe0ed307b856f (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.ini13
1 files changed, 13 insertions, 0 deletions
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