2013-01-18 11:36:58 +00:00
|
|
|
language: python
|
|
|
|
|
python:
|
|
|
|
|
- "2.7"
|
2013-01-31 13:38:24 +00:00
|
|
|
|
|
|
|
|
#Set virtual env with system-site-packages to true
|
|
|
|
|
virtualenv:
|
|
|
|
|
system_site_packages: true
|
|
|
|
|
|
2013-01-18 11:36:58 +00:00
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
2013-01-31 13:38:24 +00:00
|
|
|
before_install:
|
|
|
|
|
- sudo apt-get install -qq python-scipy python-pip
|
2013-01-31 13:43:37 +00:00
|
|
|
- sudo apt-get install -qq python-matplotlib
|
|
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
- pip install sphinx
|
|
|
|
|
- pip install nose
|
|
|
|
|
- pip install . --use-mirrors
|
|
|
|
|
# command to run tests, e.g. python setup.py test
|
|
|
|
|
script:
|
|
|
|
|
- nosetests GPy/testing
|