Skip to content

Commit

Permalink
force exlusion of RecursiveFeatureElimination from integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ablaom committed Jul 18, 2024
1 parent 92dc16d commit 8026e8a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/integration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8026e8a

Please sign in to comment.