From 84e0e4a94aa89583aed6decc4222b81bc7204f5a Mon Sep 17 00:00:00 2001 From: ethanglaser <42726565+ethanglaser@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:44:05 -0700 Subject: [PATCH] CI: deselections for 2025.0 (#2049) * CI: deselections for 2025.0 * remove all rbf tests --- deselected_tests.yaml | 3 +++ onedal/svm/tests/test_csr_svm.py | 2 ++ 2 files changed, 5 insertions(+) diff --git a/deselected_tests.yaml b/deselected_tests.yaml index 7ff0c5fbe0..3fe5436ecb 100755 --- a/deselected_tests.yaml +++ b/deselected_tests.yaml @@ -380,6 +380,9 @@ deselected_tests: - model_selection/tests/test_classification_threshold.py::test_fit_and_score_over_thresholds_sample_weight >=1.5 - model_selection/tests/test_classification_threshold.py::test_tuned_threshold_classifier_cv_zeros_sample_weights_equivalence >=1.5 + # Deselections for 2025.0 + - ensemble/tests/test_forest.py::test_importances[ExtraTreesRegressor-squared_error-float64] + # -------------------------------------------------------- # No need to test daal4py patching reduced_tests: diff --git a/onedal/svm/tests/test_csr_svm.py b/onedal/svm/tests/test_csr_svm.py index d0476827dd..5dfd3c037e 100644 --- a/onedal/svm/tests/test_csr_svm.py +++ b/onedal/svm/tests/test_csr_svm.py @@ -142,6 +142,8 @@ def _test_iris(queue, kernel): @pytest.mark.parametrize("queue", get_queues()) @pytest.mark.parametrize("kernel", ["linear", "rbf", "poly", "sigmoid"]) def test_iris(queue, kernel): + if kernel == "rbf": + pytest.skip("RBF CSR SVM test failing in 2025.0.") _test_iris(queue, kernel)