We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13fa689 commit fccd220Copy full SHA for fccd220
pandas/tests/io/parser/common/test_common_basic.py
@@ -15,6 +15,7 @@
15
16
from pandas._config import using_string_dtype
17
18
+from pandas.compat import HAS_PYARROW
19
from pandas.errors import (
20
EmptyDataError,
21
ParserError,
@@ -766,7 +767,7 @@ def test_dict_keys_as_names(all_parsers):
766
767
tm.assert_frame_equal(result, expected)
768
769
-@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
770
+@pytest.mark.xfail(using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string)")
771
@xfail_pyarrow # UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 0
772
def test_encoding_surrogatepass(all_parsers):
773
# GH39017
0 commit comments