Newer
Older
language: python
sudo: false
branches:
only:
- master
before_install:
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
if ["$TRAVIS_PYTHON_VERSION" == "2.7"]; then
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
else
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Install not using env because build needs to be in root env
- conda install -c conda-forge gdal h5py
- conda install pandas sqlalchemy pyyaml
- pip install pvl protobuf==3.0.0.b2
# Development installation
- conda install nose coverage
- pip install coveralls
# Install sh and binstar to support upload to Anaconda
- nosetests --with-coverage --cover-package=plio
# After test success, package and upload to Anaconda
- python build.py --project plio
after_success:
- coveralls
notifications:
webhooks:
on_success: always
on_failure: always
on_start: never
email:
recipients:
- jlaura@usgs.gov
on_success: always