From 7fd2a391a538adff0e437bd33c5a72e25e2f9adb Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Mon, 2 Feb 2015 07:18:29 +0200 Subject: [PATCH] Used travis_retry in order to avoid build failures due to network errors. --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ef0cf6e..4e6eb67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,12 +15,12 @@ compiler: gcc before_install: - buildutils/setup_travis.sh - - pip install -U setuptools - - pip install cython - - pip install pytest + - travis_retry pip install -U setuptools + - travis_retry pip install cython + - travis_retry pip install pytest install: - - pip install --editable . + - travis_retry pip install --editable . # skip testing for pypy + BUILD_CAPNP=false since it's failing in travis for some reason script: if [[ $TRAVIS_PYTHON_VERSION != 'pypy' || $BUILD_CAPNP == 'true' ]]; then py.test test; fi