Skip to content
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: Update IntervalArray min/max test to fail on changed default skipna #59747

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions pandas/tests/arrays/interval/test_interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,10 @@ def test_min_max(self, left_right_dtypes, index_or_series_or_array):
res = arr_na.max(skipna=False)
assert np.isnan(res)

res = arr_na.min(skipna=True)
assert res == MIN
assert type(res) == type(MIN)
res = arr_na.max(skipna=True)
assert res == MAX
assert type(res) == type(MAX)
for kws in [{"skipna": True}, {}]:
res = arr_na.min(**kws)
assert res == MIN
assert type(res) == type(MIN)
res = arr_na.max(**kws)
assert res == MAX
assert type(res) == type(MAX)
Loading