Skip to content

Commit 2495ad2

Browse files
fixup skip if no pyarrow
1 parent 671fc16 commit 2495ad2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/groupby/test_groupby_dropna.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
import pandas.util._test_decorators as td
5+
46
from pandas.core.dtypes.missing import na_value_for_dtype
57

68
import pandas as pd
@@ -409,7 +411,7 @@ def test_groupby_drop_nan_with_multi_index():
409411
"Float64",
410412
"category",
411413
"string",
412-
"string[pyarrow]",
414+
pytest.param("string[pyarrow]", marks=td.skip_if_no("pyarrow")),
413415
"datetime64[ns]",
414416
"period[D]",
415417
"Sparse[float]",

0 commit comments

Comments
 (0)