GPy/.travis.yml

44 lines
526 B
YAML
Raw Normal View History

sudo: false
2015-09-12 13:08:57 +01:00
os:
- linux
- osx
2013-09-09 13:29:53 +01:00
language: python
addons:
apt:
packages:
- gfortran
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
2013-09-09 13:29:53 +01:00
python:
- 2.7
- 3.3
- 3.4
2013-09-09 13:29:53 +01:00
2013-09-09 13:33:54 +01:00
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
- pip install -U pip wheel setuptools
2015-09-12 13:08:57 +01:00
- pip install numpy nose six
- pip install -v -U scipy
- python -V
2013-09-09 13:29:53 +01:00
install:
- pip install .
script:
- cd $HOME
- mkdir empty
- cd empty
- nosetests GPy
cache:
directories:
- $HOME/.cache/pip