forked from CamDavidsonPilon/lifetimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (38 loc) · 1.2 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
32
33
34
35
36
37
38
39
language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo apt-get update
# See http://conda.pydata.org/docs/travis.html
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date.
# This saves us some downloading for this version
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.7.0-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-3.7.0-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 conda
# Useful for debugging any issues with conda
- conda info -a
# Should match requirements.txt
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy scipy pandas pytest
- source activate test-environment
- python setup.py install
- pip install coveralls
- pip install pytest-cov
# command to run tests
script:
- py.test --cov lifetimes
after_success:
coveralls
# Don't want notifications
notifications:
email: false