https://github.com/GPflow/GPflow
Revision e315772007b2353eeca5565ed5b450fa48e82f2d authored by James Hensman on 31 May 2016, 13:03:57 UTC, committed by James Hensman on 31 May 2016, 13:03:57 UTC
This reverts commit 3d6972778a93fe88e125ea82068e7c124a75f788, reversing
changes made to e784aca71a9e487bed131a2734b1daa774e4f8fb.
1 parent 3d69727
Raw File
Tip revision: e315772007b2353eeca5565ed5b450fa48e82f2d authored by James Hensman on 31 May 2016, 13:03:57 UTC
Revert "merged model.py: adding jitter to the Cholesky during posterior samples"
Tip revision: e315772
.travis.yml
sudo: required
dist: trusty    
language: python
python:
    - "2.7"

before_install:
     #Install a mini version of anaconda such that we can easily install our dependencies
    - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
    - bash miniconda.sh -b -p $HOME/miniconda
    - export PATH="$HOME/miniconda/bin:$PATH"
    - conda config --set always_yes yes --set changeps1 no
    - conda update -q conda
    - conda create --yes -n condaenv python=2.7
    - conda install --yes -n condaenv pip
    - source activate condaenv
    - conda install scipy # GPflow needs scipy: installing through conda is easier than relying on setup.py
    - pip install http://mlg.eng.cam.ac.uk/matthews/GPflow/python_packages/version_0.4/linux/tensorflow-0.8.0rc0-py2-none-any.whl
    - pip install codecov
    - pip install coverage

install:
    - python setup.py install

script:
    #- nosetests testing --with-coverage --cover-package=GPflow --cover-erase
    - coverage run --source=GPflow setup.py test 

after_success:       
    - codecov

back to top