Skip to content

Commit b4a7e65

Browse files
TST: xfail more 32-bits (pandas-dev#35304)
1 parent 92c9e69 commit b4a7e65

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/window/test_rolling.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pandas.util._test_decorators as td
88

99
import pandas as pd
10-
from pandas import DataFrame, Series, date_range
10+
from pandas import DataFrame, Series, compat, date_range
1111
import pandas._testing as tm
1212
from pandas.core.window import Rolling
1313

@@ -150,6 +150,7 @@ def test_closed_one_entry(func):
150150

151151

152152
@pytest.mark.parametrize("func", ["min", "max"])
153+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
153154
def test_closed_one_entry_groupby(func):
154155
# GH24718
155156
ser = pd.DataFrame(
@@ -682,6 +683,7 @@ def test_iter_rolling_datetime(expected, expected_index, window):
682683
),
683684
],
684685
)
686+
@pytest.mark.xfail(not compat.IS64, reason="GH-35294")
685687
def test_rolling_positional_argument(grouping, _index, raw):
686688
# GH 34605
687689

0 commit comments

Comments
 (0)