Skip to content

Commit 2f4c25e

Browse files
meeseeksmachinejreback
authored andcommitted
Backport PR #27956: TST: xfail on 37, win (#27957)
1 parent 783022a commit 2f4c25e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tests/groupby/test_categorical.py

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import numpy as np
55
import pytest
66

7+
from pandas.compat import PY37, is_platform_windows
8+
79
import pandas as pd
810
from pandas import (
911
Categorical,
@@ -208,6 +210,9 @@ def test_level_get_group(observed):
208210

209211

210212
# GH#21636 previously flaky on py37
213+
@pytest.mark.xfail(
214+
is_platform_windows() and PY37, reason="Flaky, GH-27902", strict=False
215+
)
211216
@pytest.mark.parametrize("ordered", [True, False])
212217
def test_apply(ordered):
213218
# GH 10138

0 commit comments

Comments
 (0)