-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
language: python | ||
notifications: | ||
email: false | ||
python: | ||
# We don't actually use the Travis Python, but this keeps it organized. | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
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. | ||
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
- 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 -n cadati_env python=${TRAVIS_PYTHON_VERSION} | ||
- conda env update -f environment.yml -n cadati_env | ||
- source activate cadati_env | ||
- python setup.py install | ||
|
||
- conda list | ||
- pip list | ||
- which pip | ||
- which python | ||
|
||
script: | ||
- python setup.py test | ||
after_success: | ||
# report coverage results to coveralls.io | ||
- pip install coveralls | ||
- coveralls |