Skip to content

Commit d8843e5

Browse files
committed
comment skipif to check failed test cases.
Signed-off-by: Liang Yan <[email protected]>
1 parent 6eb4810 commit d8843e5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/groupby/aggregate/test_aggregate.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_groupby_aggregation_mixed_dtype():
6767
# GH 6212
6868
expected = DataFrame(
6969
{
70-
"v1": [5, 5, 7, np.nan, 3, 3, 4, 1],
70+
7171
"v2": [55, 55, 77, np.nan, 33, 33, 44, 11],
7272
},
7373
index=MultiIndex.from_tuples(
@@ -1633,9 +1633,7 @@ def test_groupby_agg_extension_timedelta_cumsum_with_named_aggregation():
16331633
result = gb.agg(td=("td", "cumsum"))
16341634

16351635

1636-
@pytest.mark.skipif(
1637-
not typing.TYPE_CHECKING, reason="let pyarrow to be imported in dtypes.py"
1638-
)
1636+
@skip_if_no_pyarrow
16391637
def test_agg_arrow_type():
16401638
df = DataFrame.from_dict(
16411639
{

0 commit comments

Comments
 (0)