tox: Move dependencies installation to .travis.yml

This patch moves dependencies installation in tox.ini to .travis.yml
in order to avoid to install dependencies repeatedly when running
tox tests on locally.

Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
IWASE Yusuke 2016-11-29 17:21:58 +09:00 committed by FUJITA Tomonori
parent f152c69ee0
commit 6da65f508e
2 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,7 @@ sudo: required # Required to enable Docker service
install:
- pip install tox coveralls
- bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh
script:
- NOSE_VERBOSE=0 tox -e $TOX_ENV

View File

@ -18,7 +18,6 @@ commands =
[testenv:scenario]
commands =
bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh
python ryu/tests/integrated/run_test.py
[testenv:py27]