From 920ff658dcd00882aa57a01987fbfaca758ba6e0 Mon Sep 17 00:00:00 2001 From: James Gaboardi Date: Wed, 27 Nov 2019 16:53:22 -0500 Subject: [PATCH 1/2] removing fast finish to address #322 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c076479..b2a40030 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: minimal sudo: false matrix: - fast_finish: true include: - name: "python-3.6-pypi" env: PY=3.6 PYSAL_PYPI=true PYSAL_PLUS=false From d2b812f43c488506872f72f2f6a47c4685264b32 Mon Sep 17 00:00:00 2001 From: James Gaboardi Date: Wed, 27 Nov 2019 16:57:05 -0500 Subject: [PATCH 2/2] standardizing line breaks in .travis.yml --- .travis.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2a40030..bc85787a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,24 +57,28 @@ before_install: install: - pip install -e . --no-deps --force-reinstall - - if "$PYSAL_PYPI"; then - echo 'testing conda libpysal' && conda install --yes libpysal; + - if [ "$PYSAL_PYPI" == true ]; then + echo 'testing conda libpysal'; + conda install --yes libpysal; else echo 'testing git libpysal'; git clone https://github.com/pysal/libpysal.git; - cd libpysal; pip install .; cd ../; + cd libpysal; + pip install .; + cd ../; fi; - if [ "$PYSAL_PLUS" == true ]; then - echo 'plus testing'; conda install --yes --file requirements_plus.txt; + echo 'plus testing'; + conda install --yes --file requirements_plus.txt; fi; script: - if [[ $TRAVIS_JOB_NAME == python-* ]]; then - travis_wait 45 nosetests --verbose --with-coverage --with-doctest --cover-package=spaghetti ; + travis_wait 45 nosetests --verbose --with-coverage --with-doctest --cover-package=spaghetti; fi - if [[ $TRAVIS_JOB_NAME == tarball* ]]; then - pip wheel . -w dist --no-deps ; - twine check dist/* ; + pip wheel . -w dist --no-deps; + twine check dist/*; fi notifications: