forked from jvkersch/hsmmlearn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
33 lines (33 loc) · 939 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
32
33
language: python
python:
- 2.7
- 3.4
- 3.5
cache:
directories:
- $HOME/.cache
- $HOME/.ccache
before_install:
- ccache -s
- export PATH=/usr/lib/ccache:${PATH}
- pip install --upgrade pip
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
- sudo add-apt-repository 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu trusty/'
- sudo apt-get update
- sudo apt-get install libblas-dev
- sudo apt-get install liblapack-dev
- sudo apt-get install gfortran
- sudo apt-get install r-base # for R interface
- sudo apt-get install r-base-dev
- sudo bash ./R-setup.sh
install:
- pip install --upgrade -r requirements.txt
- pip install --upgrade -r travis_requirements.txt
- python setup.py develop
script:
- coverage run -m unittest discover -v
notifications:
email:
after_success:
coveralls