Skip to content

Commit dbd102c

Browse files
authored
TST: xfail flaky 3.7 test, xref #21636 (#21637)
1 parent af8d174 commit dbd102c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/groupby/test_categorical.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import numpy as np
88
import pandas as pd
9+
from pandas.compat import PY37
910
from pandas import (Index, MultiIndex, CategoricalIndex,
1011
DataFrame, Categorical, Series, qcut)
1112
from pandas.util.testing import assert_frame_equal, assert_series_equal
@@ -205,6 +206,7 @@ def test_level_get_group(observed):
205206
assert_frame_equal(result, expected)
206207

207208

209+
@pytest.mark.xfail(PY37, reason="flaky on 3.7, xref gh-21636")
208210
@pytest.mark.parametrize('ordered', [True, False])
209211
def test_apply(ordered):
210212
# GH 10138

0 commit comments

Comments
 (0)