Skip to content

Commit

Permalink
Backport PR #35809: CI: more xfail failing 32-bit tests (#35821)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Hawkins <simonjayhawkins@gmail.com>
  • Loading branch information
meeseeksmachine and simonjayhawkins committed Aug 20, 2020
1 parent 827e606 commit 6d44a73
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pandas/tests/window/test_grouper.py
Expand Up @@ -215,6 +215,7 @@ def foo(x):
)
tm.assert_series_equal(result, expected)

@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
def test_groupby_rolling_center_center(self):
# GH 35552
series = Series(range(1, 6))
Expand Down Expand Up @@ -280,6 +281,7 @@ def test_groupby_rolling_center_center(self):
)
tm.assert_frame_equal(result, expected)

@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
def test_groupby_subselect_rolling(self):
# GH 35486
df = DataFrame(
Expand All @@ -305,6 +307,7 @@ def test_groupby_subselect_rolling(self):
)
tm.assert_series_equal(result, expected)

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

@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
def test_groupby_rolling_subset_with_closed(self):
# GH 35549
df = pd.DataFrame(
Expand All @@ -352,6 +356,7 @@ def test_groupby_rolling_subset_with_closed(self):
)
tm.assert_series_equal(result, expected)

@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
def test_groupby_subset_rolling_subset_with_closed(self):
# GH 35549
df = pd.DataFrame(
Expand Down

0 comments on commit 6d44a73

Please sign in to comment.