Skip to content

Commit 5e41b47

Browse files
committed
Add version specifier
1 parent dda7604 commit 5e41b47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/extension/test_arrow.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,8 @@ def _get_expected_reduction_dtype(self, arr, op_name: str, skipna: bool):
577577
@pytest.mark.parametrize("skipna", [True, False])
578578
def test_reduce_series_numeric(self, data, all_numeric_reductions, skipna, request):
579579
if (
580-
skipna
580+
not pa_version_under20p0
581+
and skipna
581582
and all_numeric_reductions == "skew"
582583
and (
583584
pa.types.is_integer(data.dtype.pyarrow_dtype)

0 commit comments

Comments
 (0)