-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
31 lines (30 loc) · 1.25 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: python
python:
- "3.6"
install:
- sudo apt-get update
- echo $TRAVIS_PYTHON_VERSION
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://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
- conda info -a
- conda create -q -n test python=$TRAVIS_PYTHON_VERSION pytest gdal numpy typing matplotlib netcdf4 python-dateutil scipy
- source activate test
- pip install -U codecov
- pip install datetime
- pip install https://github.com/multiply-org/multiply-core/zipball/master
- pip install https://github.com/multiply-org/prior-engine/zipball/use_pkg_resources
#todo change this so we only use MULTIPLY repositories
- pip install https://github.com/jgomezdans/BRDF_descriptors/zipball/master
- pip install https://github.com/Assimila/KaFKA/zipball/hess_corr_state_mapper
# - pip install https://github.com/multiply-org/KaFKA-InferenceEngine/zipball/master
- python setup.py install
script:
- pytest