Skip to content

Commit 4cdb9f8

Browse files
Skip test if pyarrow is not installed
1 parent d14ef8d commit 4cdb9f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/integ/test_arrow_result.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,6 +1345,9 @@ def iterate_over_test_chunk(
13451345
assert str(arrow_res[0]) == expected[i]
13461346

13471347

1348+
@pytest.mark.skipif(
1349+
not no_arrow_iterator_ext, reason="test requires arrow_iterator extension"
1350+
)
13481351
@pytest.mark.parametrize(
13491352
"timestamp_type", ["timestamp_ntz", "timestamp_ltz", "timestamp_tz"]
13501353
)

0 commit comments

Comments
 (0)