From 8026e8a8b2dfe87f5601b7d70f1d3d5a455a3f10 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 19 Jul 2024 07:49:33 +1200 Subject: [PATCH] force exlusion of RecursiveFeatureElimination from integration tests --- test/integration.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/integration.jl b/test/integration.jl index d1413ea77..06102a677 100644 --- a/test/integration.jl +++ b/test/integration.jl @@ -155,7 +155,11 @@ PATHOLOGIES = filter(MODELS) do model # too slow to train! (model.name == "LOCIDetector" && model.package_name == "OutlierDetectionPython") || # TO REDUCE TESTING TIME - model.package_name == "MLJScikitLearnInterface" + model.package_name == "MLJScikitLearnInterface" || + # can be removed after resolution of + # https://github.com/JuliaAI/FeatureSelection.jl/issues/15 + # and a Model Registry update + model.name == "RecursiveFeatureElimination" end WITHOUT_DATASETS = vcat(WITHOUT_DATASETS, PATHOLOGIES)