From 3c35471c7634c84a1cf3e4471481570cf9d98974 Mon Sep 17 00:00:00 2001 From: Pierre Bonami Date: Fri, 8 Nov 2024 10:26:39 +0100 Subject: [PATCH] Skip test that doesn't fail with this branch --- tests/test_sklearn/test_sklearn_exceptions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_sklearn/test_sklearn_exceptions.py b/tests/test_sklearn/test_sklearn_exceptions.py index 6667b501..73315c6e 100644 --- a/tests/test_sklearn/test_sklearn_exceptions.py +++ b/tests/test_sklearn/test_sklearn_exceptions.py @@ -33,6 +33,7 @@ def test_logistic_wrongarg(self): with self.assertRaises(ParameterError): add_predictor_constr(m, logreg, x, predict_function="predi_prba") + @unittest.skip("Actually works in this branch") def test_mlpregressor_wrong_act(self): data = datasets.load_diabetes()