Skip to content

Commit 073048f

Browse files
CI: more xfail failing 32-bit tests (pandas-dev#35809)
1 parent 741a21b commit 073048f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tests/window/test_grouper.py

+5
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ def foo(x):
215215
)
216216
tm.assert_series_equal(result, expected)
217217

218+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
218219
def test_groupby_rolling_center_center(self):
219220
# GH 35552
220221
series = Series(range(1, 6))
@@ -280,6 +281,7 @@ def test_groupby_rolling_center_center(self):
280281
)
281282
tm.assert_frame_equal(result, expected)
282283

284+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
283285
def test_groupby_subselect_rolling(self):
284286
# GH 35486
285287
df = DataFrame(
@@ -305,6 +307,7 @@ def test_groupby_subselect_rolling(self):
305307
)
306308
tm.assert_series_equal(result, expected)
307309

310+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
308311
def test_groupby_rolling_custom_indexer(self):
309312
# GH 35557
310313
class SimpleIndexer(pd.api.indexers.BaseIndexer):
@@ -328,6 +331,7 @@ def get_window_bounds(
328331
expected = df.groupby(df.index).rolling(window=3, min_periods=1).sum()
329332
tm.assert_frame_equal(result, expected)
330333

334+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
331335
def test_groupby_rolling_subset_with_closed(self):
332336
# GH 35549
333337
df = pd.DataFrame(
@@ -352,6 +356,7 @@ def test_groupby_rolling_subset_with_closed(self):
352356
)
353357
tm.assert_series_equal(result, expected)
354358

359+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
355360
def test_groupby_subset_rolling_subset_with_closed(self):
356361
# GH 35549
357362
df = pd.DataFrame(

0 commit comments

Comments
 (0)