Skip to content

Commit 70aa0cc

Browse files
committed
TST: xfail on 37, win
Closes pandas-dev#27902
1 parent 802f670 commit 70aa0cc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/tests/groupby/test_categorical.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
from collections import OrderedDict
22
from datetime import datetime
3+
import sys
34

45
import numpy as np
56
import pytest
67

8+
from pandas.compat import PY37
9+
710
import pandas as pd
811
from pandas import (
912
Categorical,
@@ -208,6 +211,9 @@ def test_level_get_group(observed):
208211

209212

210213
# GH#21636 previously flaky on py37
214+
@pytest.mark.xfail(
215+
sys.platform.startswith("win") and PY37, reason="Flaky, GH-27902", strict=False
216+
)
211217
@pytest.mark.parametrize("ordered", [True, False])
212218
def test_apply(ordered):
213219
# GH 10138

0 commit comments

Comments
 (0)