Skip to content

Commit 2035860

Browse files
committed
CI: remove xfail in grouopby pandas-dev#40144
1 parent 440a7de commit 2035860

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/extension/base/groupby.py

-4
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,6 @@ def test_groupby_extension_apply(self, data_for_grouping, groupby_apply_op):
7575
df.groupby("A").apply(groupby_apply_op)
7676
df.groupby("A").B.apply(groupby_apply_op)
7777

78-
# Non-strict bc these xpass on dt64tz, Period, Interval, JSON, PandasArray
79-
@pytest.mark.xfail(
80-
is_numpy_dev, reason="2021-03-02 #40144 expecting fix in numpy", strict=False
81-
)
8278
def test_groupby_apply_identity(self, data_for_grouping):
8379
df = pd.DataFrame({"A": [1, 1, 2, 2, 3, 3, 1, 4], "B": data_for_grouping})
8480
result = df.groupby("A").B.apply(lambda x: x.array)

0 commit comments

Comments
 (0)