-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
31 lines (26 loc) · 922 Bytes
/
.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:
- "2.7"
# - "3.5"
# - "nightly" # currently points to 3.6-dev
sudo: false
notifications:
email: false
# Setup dependencies and install package
install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda create -q -n travis-env python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib astropy healpy pyyaml emcee corner nose cython -c fermipy -c astropy
- source activate travis-env
#- pip install Cython --install-option="--no-cython-compile"
- pip install vegas
- pip install ugali --no-deps --install-option="--isochrones"
- pip install -r requirements.txt
# command to run tests
script:
#- nosetests -v --nocapture
- nosetests -v