Skip to content

CI/TST: Address TestArrowArray::test_reduce_series_numeric supporting skew #61098

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

Merged
merged 5 commits into from
Mar 11, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Add version specifier
  • Loading branch information
mroeschke committed Mar 11, 2025
commit 5e41b4714f6f659655f9a1571ae453938ff17fd1
3 changes: 2 additions & 1 deletion pandas/tests/extension/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,8 @@ def _get_expected_reduction_dtype(self, arr, op_name: str, skipna: bool):
@pytest.mark.parametrize("skipna", [True, False])
def test_reduce_series_numeric(self, data, all_numeric_reductions, skipna, request):
if (
skipna
not pa_version_under20p0
and skipna
and all_numeric_reductions == "skew"
and (
pa.types.is_integer(data.dtype.pyarrow_dtype)
Expand Down
Loading