-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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 (string dtype): clean-up interpolate tests #60653
base: main
Are you sure you want to change the base?
TST (string dtype): clean-up interpolate tests #60653
Conversation
Milestone should be 2.3 right? |
if not using_infer_string: | ||
with pytest.raises(TypeError, match=msg): | ||
df.set_index("C").interpolate() | ||
else: | ||
result = df.set_index("C").interpolate() | ||
expected = df.set_index("C") | ||
expected.loc[3, "A"] = 2.66667 | ||
expected.loc[5, "B"] = 9 | ||
tm.assert_frame_equal(result, expected) |
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.
Previously this test was showing an API discrepancy between object vs string dtypes. Maybe just open an issue to track?
This pull request is stale because it has been open for thirty days with no activity. Please update and respond to this comment if you're still interested in working on this. |
Small follow-up on #60637: move the code checking for the error for non-numeric data to a separate test, so we can actually still test the "basic" behaviour properly in the case there are only numeric columns. And remove the xfail for the non-range index case.