Skip to content

Commit 9f93d57

Browse files
TST: xfail on 37, win (#27956)
* TST: xfail on 37, win Closes #27902
1 parent f4b4ec2 commit 9f93d57

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)