-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
[MRG] MNT Remove build_tools/windows/windows_testing_downloader.ps1 #12974
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
Conversation
Thanks! |
Yep that showed up in my search, thought that's there for Azure pipeline or something.
I wasn't sure if can remove them now as its slated for removal for version 0.22, apparently they are not used anywhere. scikit-learn/sklearn/utils/testing.py Lines 56 to 77 in a7b8b9e
Let me clean them as well. |
Because of that we will have to wait for v0.22 to remove them.. |
ok will roll back those changes |
sklearn/utils/testing.py
Outdated
additional_names_in_all = [] | ||
try: | ||
from nose.tools import raises as _nose_raises | ||
deprecation_message = ( |
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.
Use a try-except-else rather than doing this in the try block (and rather than doing a second try block below)
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.
Sorry I must have been looking at the wrong diff. |
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.
LGTM, thanks @nixphix !
What does this implement/fix? Explain your changes.
removes nose test configuration to prevent
train_test_split
function from detected as test case.