-
Notifications
You must be signed in to change notification settings - Fork 37
/
.travis.yml
33 lines (29 loc) · 869 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
sudo: required
dist: trusty
language: python
python:
- 3.6
before_install:
- sudo apt-get update -qq
install:
- pip install numpy scipy sklearn pandas pytest matplotlib pytest-xdist pytest-cov codecov ddt
- python setup.py install
- git clone https://github.com/GPflow/GPflow.git
- cd GPflow
- git reset --hard 3a169917326bdacef9bb7003a8122766d7cf6472
- pip install .
- cd ../
- git clone https://github.com/ICL-SML/Doubly-Stochastic-DGP.git
- cd Doubly-Stochastic-DGP
- git reset --hard 23343e1143390168fdb7abe19c5878933dea9e06
- pip install .
- cd ../
script:
- pytest -W ignore::UserWarning --durations=50 --cov=./bayesian_benchmarks -d --tx 3*popen//python=python3.6 --pyargs ./tests
- codecov --token=fe99b84e-0656-4739-96b9-79f021477eac
cache:
apt: true
pip: true
directories:
- $HOME/.cache/pip
- $HOME/download