From 3a08c0d9ab546a7a5969c7c80e83f2fc90054329 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Wed, 20 Nov 2013 14:37:14 +0000 Subject: [PATCH] skipping crossterm tests instead of expected failure --- GPy/testing/unit_tests.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/GPy/testing/unit_tests.py b/GPy/testing/unit_tests.py index 69a15a7f..9269a4c4 100644 --- a/GPy/testing/unit_tests.py +++ b/GPy/testing/unit_tests.py @@ -163,16 +163,18 @@ class GradientTests(unittest.TestCase): rbflin = GPy.kern.rbf(2) + GPy.kern.linear(2) self.check_model(rbflin, model_type='SparseGPRegression', dimension=2) - @unittest.expectedFailure + #@unittest.expectedFailure def test_SparseGPRegression_rbf_linear_white_kern_2D_uncertain_inputs(self): ''' Testing the sparse GP regression with rbf, linear kernel on 2d data with uncertain inputs''' rbflin = GPy.kern.rbf(2) + GPy.kern.linear(2) + raise unittest.SkipTest("This is not implemented yet!") self.check_model(rbflin, model_type='SparseGPRegression', dimension=2, uncertain_inputs=1) - @unittest.expectedFailure + #@unittest.expectedFailure def test_SparseGPRegression_rbf_linear_white_kern_1D_uncertain_inputs(self): ''' Testing the sparse GP regression with rbf, linear kernel on 1d data with uncertain inputs''' rbflin = GPy.kern.rbf(1) + GPy.kern.linear(1) + raise unittest.SkipTest("This is not implemented yet!") self.check_model(rbflin, model_type='SparseGPRegression', dimension=1, uncertain_inputs=1) def test_GPLVM_rbf_bias_white_kern_2D(self):