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 85075f4 commit d3257cfCopy full SHA for d3257cf
pandas/tests/arithmetic/test_string.py
@@ -215,7 +215,12 @@ def test_add_2d(any_string_dtype, request):
215
216
def test_add_sequence(any_string_dtype, request):
217
dtype = any_string_dtype
218
- if dtype != object and dtype.storage == "python" and dtype.na_value is np.nan:
+ if (
219
+ dtype != object
220
+ and dtype.storage == "python"
221
+ and dtype.na_value is np.nan
222
+ and HAS_PYARROW
223
+ ):
224
mark = pytest.mark.xfail(
225
reason="As of GH#62522, the list gets wrapped with sanitize_array, "
226
"which casts to a higher-priority StringArray, so we get "
0 commit comments