Skip to content

Commit c31f67b

Browse files
authored
test: skip str.isdigit test on pyarrow dev versions (#1793)
1 parent 0b59cf1 commit c31f67b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/system/small/operations/test_strings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,11 @@ def test_isalpha(weird_strings, weird_strings_pd):
325325
)
326326

327327

328+
@pytest.mark.skipif(
329+
"dev" in pa.__version__,
330+
# b/333484335 pyarrow is inconsistent on the behavior
331+
reason="pyarrow dev version is inconsistent on isdigit behavior.",
332+
)
328333
def test_isdigit(weird_strings, weird_strings_pd):
329334
pd_result = weird_strings_pd.str.isdigit()
330335
bf_result = weird_strings.str.isdigit().to_pandas()

0 commit comments

Comments
 (0)