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 <[email protected]> --- .travis.yml | 1 + tox.ini | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 67e9f8b..9e5474a 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 6225829..cb6df7f 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] -- 2.7.4 ------------------------------------------------------------------------------ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
