-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
TST: filter warnings for is_extension_type deprecation #29549
TST: filter warnings for is_extension_type deprecation #29549
Conversation
@pytest.mark.parametrize( | ||
"check_scipy", [False, pytest.param(True, marks=td.skip_if_no_scipy)] | ||
) | ||
def test_is_extension_array_dtype(check_scipy): |
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.
I copy pasted the original is_extension_type
to test is_extension_array_dtype
, as that is going to replace it and was not yet tested here (so when cleaning this up, can simply remove the above is_extension_type
test)
I'm surprised we dont have better tests for is_extension_array_dtype. LGTM. |
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.
I'm surprised we dont have better tests for is_extension_array_dtype.
What's this referring to?
the need for |
I assume it's verifying that |
Yes, but Brock's comment was about that this was needed, because |
Follow up on #29457