commit 1985cdcdbba57b49214e536684890f42e32b4bce Author: Alan Saul Date: Mon Sep 9 13:29:53 2013 +0100 Empty branch diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..60866848 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +#vim +*.swp + +#bfgs optimiser leaves this lying around +iterate.dat diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..6d188401 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: python +python: + - "2.7" + +#Set virtual env with system-site-packages to true +virtualenv: + system_site_packages: true + +# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors +before_install: + - sudo apt-get install -qq python-scipy python-pip + - sudo apt-get install -qq python-matplotlib + +install: + - pip install --upgrade numpy==1.7.1 + - pip install sphinx + - pip install nose + - pip install . --use-mirrors +# command to run tests, e.g. python setup.py test +script: + - nosetests GPy/testing