Skip to content

Commit

Permalink
Add travis configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhahn committed Jan 19, 2019
1 parent 98f26b1 commit 6d15d44
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
language: python
sudo: false
notifications:
email: false
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.5"
- "3.6"
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.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

- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy pytest pip netCDF4 pyproj
- source activate test-environment
- pip insatll pygeobase repurpose pynetcf pyresample pytesmo
- python setup.py install
script:
- python setup.py test
after_success:
# report coverage results to coveralls.io
- pip install coveralls
- coveralls

0 comments on commit 6d15d44

Please sign in to comment.