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 55ea98b commit cb56243Copy full SHA for cb56243
pandas/tests/io/pytables/test_store.py
@@ -25,6 +25,7 @@
25
timedelta_range,
26
)
27
import pandas._testing as tm
28
+from pandas.conftest import has_pyarrow
29
from pandas.tests.io.pytables.common import (
30
_maybe_remove,
31
ensure_clean_store,
@@ -385,7 +386,7 @@ def test_to_hdf_with_min_itemsize(tmp_path, setup_path):
385
386
387
388
@pytest.mark.xfail(
- using_string_dtype(),
389
+ using_string_dtype() and has_pyarrow,
390
reason="TODO(infer_string): can't encode '\ud800': surrogates not allowed",
391
392
@pytest.mark.parametrize("format", ["fixed", "table"])
0 commit comments