We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924751c commit 66ee6f3Copy full SHA for 66ee6f3
pandas/tests/groupby/test_categorical.py
@@ -3,8 +3,6 @@
3
import numpy as np
4
import pytest
5
6
-from pandas.compat import PY37, is_platform_windows
7
-
8
import pandas as pd
9
from pandas import (
10
Categorical,
@@ -13,7 +11,6 @@
13
11
Index,
14
12
MultiIndex,
15
Series,
16
- _np_version_under1p17,
17
qcut,
18
)
19
import pandas._testing as tm
@@ -244,12 +241,6 @@ def test_level_get_group(observed):
244
241
tm.assert_frame_equal(result, expected)
245
242
246
243
247
-# GH#21636 flaky on py37; may be related to older numpy, see discussion
248
-# https://github.com/MacPython/pandas-wheels/pull/64
249
-@pytest.mark.xfail(
250
- PY37 and _np_version_under1p17 and not is_platform_windows(),
251
- reason="Flaky, GH-27902",
252
-)
253
@pytest.mark.parametrize("ordered", [True, False])
254
def test_apply(ordered):
255
# GH 10138
0 commit comments