2015-09-12 13:03:52 +01:00
|
|
|
sudo: false
|
|
|
|
|
|
2015-09-12 13:08:57 +01:00
|
|
|
os:
|
|
|
|
|
- linux
|
|
|
|
|
- osx
|
|
|
|
|
|
2013-09-09 13:29:53 +01:00
|
|
|
language: python
|
2015-09-12 13:03:52 +01:00
|
|
|
|
|
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
|
|
|
|
- gfortran
|
|
|
|
|
- libatlas-dev
|
|
|
|
|
- libatlas-base-dev
|
|
|
|
|
- liblapack-dev
|
|
|
|
|
|
2013-09-09 13:29:53 +01:00
|
|
|
python:
|
2015-09-12 13:03:52 +01:00
|
|
|
- 2.7
|
2015-09-12 13:50:34 +01:00
|
|
|
# - 3.3
|
2015-09-12 13:03:52 +01:00
|
|
|
- 3.4
|
2013-09-09 13:29:53 +01:00
|
|
|
|
2013-09-09 13:33:54 +01:00
|
|
|
before_install:
|
2015-09-12 13:50:34 +01:00
|
|
|
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
|
|
|
|
|
- chmod +x miniconda.sh
|
|
|
|
|
- ./miniconda.sh -b
|
|
|
|
|
- export PATH=/home/travis/miniconda/bin:$PATH
|
|
|
|
|
- conda update --yes conda
|
|
|
|
|
|
2013-09-09 13:29:53 +01:00
|
|
|
install:
|
2015-09-12 13:50:34 +01:00
|
|
|
- conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy=1.9 scipy=0.16 matplotlib nose sphinx pip nose
|
2015-09-12 13:03:52 +01:00
|
|
|
- pip install .
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
- cd $HOME
|
|
|
|
|
- mkdir empty
|
|
|
|
|
- cd empty
|
|
|
|
|
- nosetests GPy
|
|
|
|
|
|
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.cache/pip
|