Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ env:
- PYSAL_PLUS=false
- PYSAL_PLUS=true

matrix:
allow_failures:
- python: 3.5
env: PYSAL_PYPI=false
- python: 3.6
env: PYSAL_PYPI=false

before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
Expand All @@ -25,6 +32,13 @@ install:
- conda install --yes pip
- pip install -r requirements.txt
- pip install -r requirements_tests.txt
- if "$PYSAL_PYPI"; then
echo 'testing pypi libpysal spglm' && pip install libpysal spglm;
else
echo 'testing git libpysal';
git clone https://github.com/pysal/libpysal.git; cd libpysal; pip install .; cd ../;
git clone https://github.com/pysal/spglm.git; cd spglm; pip install .; cd ../;
fi;

script:
- python setup.py sdist >/dev/null
Expand All @@ -35,7 +49,7 @@ notifications:
email:
recipients:
- [email protected]
on_change: always
on_change: change
on_failure: always

after_success:
Expand Down