From 6da65f508e4237ea857798ca38fe590742fda199 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Tue, 29 Nov 2016 17:21:58 +0900 Subject: [PATCH] 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 Signed-off-by: FUJITA Tomonori --- .travis.yml | 1 + tox.ini | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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]