From 79e55936e475ef527caf28766c3e210e9fdb338e Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Fri, 13 Dec 2019 12:58:23 -0700 Subject: [PATCH] .travis.yml: xcode11.2 scipy issue The previous commit that added support for xcode11.2 resolved the steadystate_tests scipy dependency with 'pip3 install scipy'. However, the travis xcode11.2 image changed and now we need 'pip install scipy' to provide the scipy dependency. To forestall future issues, install scipy for both python2 and python3. Also enable debug output in run-fio-tests.py to provide more information in case of failure. Signed-off-by: Vincent Fu --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0017db56..eee31988 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,17 +43,16 @@ before_install: fi; sudo apt-get -qq update; sudo apt-get install --no-install-recommends -qq -y "${pkgs[@]}"; - fi + fi; - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install cunit; if [[ "$TRAVIS_OSX_IMAGE" == "xcode11.2" ]]; then pip3 install scipy; - else - pip install scipy; fi; - fi + pip install scipy; + fi; script: - ./configure --extra-cflags="${EXTRA_CFLAGS}" && make - make test - - sudo python3 t/run-fio-tests.py --skip 6 1007 1008 + - sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -- 2.25.1