summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2016-11-29 17:21:58 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-12-14 13:23:32 +0900
commit6da65f508e4237ea857798ca38fe590742fda199 (patch)
tree7acdbef98c1524857cafbd94ff1dfea2019d5419
parentf152c69ee0e57c048bb43b50b9ea1a0417e994e2 (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.yml1
-rw-r--r--tox.ini1
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
diff --git a/tox.ini b/tox.ini
index 62258296..cb6df7f7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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]