-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppress model-generated warnings in integration tests #1115
Conversation
"https://github.com/rikhuijzer/SIRUS.jl/issues/78" => | ||
model -> model.package_name == "SIRUS", | ||
"https://github.com/lalvim/PartialLeastSquaresRegressor.jl/issues/29 "* | ||
"(still need release > 2.2.0)" => | ||
model -> model.package_name == "PartialLeastSquaresRegressor", | ||
"MLJScikitLearnInterface - multiple issues, hangs tests, WIP" => | ||
model -> model.package_name == "MLJScikitLearnInterface", | ||
"MLJScikitLearnInterface - multiple issues, WIP" => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we currently have issues with Scikitlearn?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually only the ones flagged under "PATHOLOGIES". But running the tests for all the sk models doubles the test time (something like 4 hours).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As noted above, I'll open an issue flagging these as disabled.
Currently it's painful to check the log for integration tests because some models have a low bar for issuing warnings that are almost certainly irrelevant for the purposes of the integration tests.
In this PR we suppress these warnings. We also:
PATHOLOGIES
category, with models flagged usingFILTER_GIVEN_ISSUE
allowed to silently fail, unless they pass tests, a fact we now report in the log. Previously these latter models were just ignored, along withPATHOLOGIES
.Note: Integration tests are actually skipped in this preliminary PR. They become active in a PR onto
master
.