Skip to content

Commit 28ce5f0

Browse files
committed
Xfail test with empty index
1 parent b8beead commit 28ce5f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/frame/methods/test_reset_index.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import numpy as np
55
import pytest
66

7+
from pandas._config import using_string_dtype
8+
79
from pandas.core.dtypes.common import (
810
is_float_dtype,
911
is_integer_dtype,
@@ -642,6 +644,7 @@ def test_rest_index_multiindex_categorical_with_missing_values(self, codes):
642644
tm.assert_frame_equal(res, expected)
643645

644646

647+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string) - GH#60338")
645648
@pytest.mark.parametrize(
646649
"array, dtype",
647650
[

0 commit comments

Comments
 (0)