Skip to content
Snippets Groups Projects
.travis.yml 1.57 KiB
Newer Older
Jason R Laura's avatar
Jason R Laura committed
sudo: false
Jay's avatar
Jay committed
langage: python
Jason R Laura's avatar
Jason R Laura committed

branches:
jlaura's avatar
jlaura committed
  only:
    - master
Jason R Laura's avatar
Jason R Laura committed

Jay's avatar
Jay committed
python:
 - "3.4"
 - "3.5"
 - "3.6"

Jason R Laura's avatar
Jason R Laura committed
  - linux
  - osx

Jason R Laura's avatar
Jason R Laura committed
before_install:
  # We do this conditionally because it saves us some downloading if the
  # version is the same.
  - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
Jay's avatar
Jay committed
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
Jay's avatar
Jay committed
      curl -o miniconda.sh  https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
Jason R Laura's avatar
Jason R Laura committed
  - 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
Jay's avatar
Jay committed
  # Create the env
Jay's avatar
Jay committed
  - conda create --yes -n test python=$TRAVIS_PYTHON_VERSION
Jay's avatar
Jay committed
  - source activate test
jlaura's avatar
jlaura committed
  
install:
  - conda config --add channels conda-forge
  - conda config --add channels jlaura
Jay's avatar
Jay committed
  - conda install -c conda-forge gdal h5py 
  - conda install pandas sqlalchemy pyyaml networkx affine protobuf
Jay's avatar
Jay committed
  - conda install -c jlaura pvl
Jason R Laura's avatar
Jason R Laura committed

  # Development installation
jay's avatar
jay committed
  - conda install pytest  pytest-cov sh anaconda-client
jlaura's avatar
jlaura committed
  
Jason R Laura's avatar
Jason R Laura committed
script:
jay's avatar
jay committed
  - pytest --cov=plio
Jason R Laura's avatar
Jason R Laura committed

after_success:
  - coveralls
Jay's avatar
Jay committed
  - conda install conda-build anaconda-client
  - conda config --set anaconda_upload yes
Jay's avatar
Jay committed
  - conda build --token $CONDA_UPLOAD_TOKEN --python $TRAVIS_PYTHON_VERSION recipe
Jason R Laura's avatar
Jason R Laura committed

notifications:
  webhooks:
    on_success: always
    on_failure: always
    on_start: never
  email:
      recipients:
        - jlaura@usgs.gov
      on_success: always
Jason R Laura's avatar
Jason R Laura committed
      on_failure: always