Skip to content

TST: xfail on 37, win #27956

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pandas/tests/groupby/test_categorical.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from collections import OrderedDict
from datetime import datetime
import sys

import numpy as np
import pytest

from pandas.compat import PY37

import pandas as pd
from pandas import (
Categorical,
Expand Down Expand Up @@ -208,6 +211,9 @@ def test_level_get_group(observed):


# GH#21636 previously flaky on py37
@pytest.mark.xfail(
sys.platform.startswith("win") and PY37, reason="Flaky, GH-27902", strict=False
)
@pytest.mark.parametrize("ordered", [True, False])
def test_apply(ordered):
# GH 10138
Expand Down