From b095741688c05ba307cdc788d1587c089b01b6c6 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sun, 14 Jan 2024 19:21:16 +0100 Subject: [PATCH] fix wrong skip test usage --- GPy/testing/test_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/testing/test_model.py b/GPy/testing/test_model.py index 57bc7a45..954bffe9 100644 --- a/GPy/testing/test_model.py +++ b/GPy/testing/test_model.py @@ -31,7 +31,7 @@ class TestMisc: assert m.checkgrad() m.predict(m.X) - @pytest.skip( + @pytest.mark.skip( "numpy.linalg.LinAlgError: no not positive definite, even with jitter" ) # TODO: fix def test_raw_predict_numerical_stability(self):