Skip to content

Commit 21c4eba

Browse files
committed
rm SymbolicRegression because tests are too long
1 parent 552c5e3 commit 21c4eba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ FILTER_GIVEN_ISSUE = Dict(
5050
"https://github.com/sylvaticus/BetaML.jl/issues/75" =>
5151
model -> model.package_name == "BetaML" &&
5252
model.name == "NeuralNetworkClassifier",
53-
"https://github.com/MilesCranmer/SymbolicRegression.jl/issues/390" =>
54-
model -> model.package_name == "SymbolicRegression" &&
55-
model.name == "SRRegressor",
5653
# "https://github.com/JuliaAI/Imbalance.jl/issues/103" =>
5754
# model -> model.package_name == "Imbalance",
5855
)
@@ -140,7 +137,8 @@ for model in WITHOUT_DATASETS
140137
end
141138

142139
# Additionally exclude some models for which the inferred datasets have a model-specific
143-
# pathology that prevents valid generic test.
140+
# pathology that prevents valid generic test, or for some other reason requiring complete
141+
# exclusion from testing.
144142

145143
PATHOLOGIES = filter(MODELS) do model
146144
# in the subsampling occuring in stacking, we get a Cholesky
@@ -156,6 +154,8 @@ PATHOLOGIES = filter(MODELS) do model
156154
(model.name == "LOCIDetector" && model.package_name == "OutlierDetectionPython") ||
157155
# TO REDUCE TESTING TIME
158156
model.package_name == "MLJScikitLearnInterface" ||
157+
# "https://github.com/MilesCranmer/SymbolicRegression.jl/issues/390" =>
158+
model.package_name == "SymbolicRegression" ||
159159
# can be removed after resolution of
160160
# https://github.com/JuliaAI/FeatureSelection.jl/issues/15
161161
# and a Model Registry update

0 commit comments

Comments
 (0)