From 4f016293f0df3965909a5f8252ef247673784daf Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 8 Sep 2020 14:28:35 +0100 Subject: [PATCH] TST: skip test_groupby_rolling_index_changed on 32bit --- pandas/tests/window/test_grouper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/tests/window/test_grouper.py b/pandas/tests/window/test_grouper.py index 97f3e50edf211..806c22c60b48f 100644 --- a/pandas/tests/window/test_grouper.py +++ b/pandas/tests/window/test_grouper.py @@ -384,6 +384,7 @@ def test_groupby_subset_rolling_subset_with_closed(self): ) tm.assert_series_equal(result, expected) + @pytest.mark.xfail(not compat.IS64, reason="GH-35294") @pytest.mark.parametrize("func", ["max", "min"]) def test_groupby_rolling_index_changed(self, func): # GH: #36018 nlevels of MultiIndex changed