2012-11-29 16:39:20 +00:00
|
|
|
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
|
|
|
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
|
|
|
|
|
|
|
|
|
2012-11-29 16:31:48 +00:00
|
|
|
import kern
|
|
|
|
|
import models
|
|
|
|
|
import inference
|
|
|
|
|
import util
|
2013-01-18 18:15:36 +00:00
|
|
|
import examples
|
2012-11-29 16:31:48 +00:00
|
|
|
from core import priors
|
2013-01-31 15:02:34 +00:00
|
|
|
import likelihoods
|
2013-03-11 12:33:03 +00:00
|
|
|
import testing
|
|
|
|
|
from numpy.testing import Tester
|
2013-03-11 12:40:14 +00:00
|
|
|
from nose.tools import nottest
|
2013-03-11 12:33:03 +00:00
|
|
|
|
2013-03-11 12:40:14 +00:00
|
|
|
@nottest
|
2013-03-11 12:33:03 +00:00
|
|
|
def tests():
|
|
|
|
|
Tester(testing).test(verbose=10)
|