diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2016-11-29 17:21:58 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-12-14 13:23:32 +0900 |
commit | 6da65f508e4237ea857798ca38fe590742fda199 (patch) | |
tree | 7acdbef98c1524857cafbd94ff1dfea2019d5419 | |
parent | f152c69ee0e57c048bb43b50b9ea1a0417e994e2 (diff) |
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>
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | tox.ini | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 67e9f8be..9e5474a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -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] |