@@ -215,6 +215,7 @@ def foo(x):
215
215
)
216
216
tm .assert_series_equal (result , expected )
217
217
218
+ @pytest .mark .xfail (not compat .IS64 , reason = "GH-35294" )
218
219
def test_groupby_rolling_center_center (self ):
219
220
# GH 35552
220
221
series = Series (range (1 , 6 ))
@@ -280,6 +281,7 @@ def test_groupby_rolling_center_center(self):
280
281
)
281
282
tm .assert_frame_equal (result , expected )
282
283
284
+ @pytest .mark .xfail (not compat .IS64 , reason = "GH-35294" )
283
285
def test_groupby_subselect_rolling (self ):
284
286
# GH 35486
285
287
df = DataFrame (
@@ -305,6 +307,7 @@ def test_groupby_subselect_rolling(self):
305
307
)
306
308
tm .assert_series_equal (result , expected )
307
309
310
+ @pytest .mark .xfail (not compat .IS64 , reason = "GH-35294" )
308
311
def test_groupby_rolling_custom_indexer (self ):
309
312
# GH 35557
310
313
class SimpleIndexer (pd .api .indexers .BaseIndexer ):
@@ -328,6 +331,7 @@ def get_window_bounds(
328
331
expected = df .groupby (df .index ).rolling (window = 3 , min_periods = 1 ).sum ()
329
332
tm .assert_frame_equal (result , expected )
330
333
334
+ @pytest .mark .xfail (not compat .IS64 , reason = "GH-35294" )
331
335
def test_groupby_rolling_subset_with_closed (self ):
332
336
# GH 35549
333
337
df = pd .DataFrame (
@@ -352,6 +356,7 @@ def test_groupby_rolling_subset_with_closed(self):
352
356
)
353
357
tm .assert_series_equal (result , expected )
354
358
359
+ @pytest .mark .xfail (not compat .IS64 , reason = "GH-35294" )
355
360
def test_groupby_subset_rolling_subset_with_closed (self ):
356
361
# GH 35549
357
362
df = pd .DataFrame (
0 commit comments