diff options
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 |