Skip to content

Commit 29675cd

Browse files
committed
skip test if pyarrow is too old
1 parent 908614d commit 29675cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ def test_non_nanosecond_timestamps(self, temp_file):
11741174
tm.assert_frame_equal(result, expected)
11751175

11761176
def test_maps_as_pydicts(self, pa):
1177-
import pyarrow
1177+
pyarrow = pytest.importorskip("pyarrow", "13.0.0")
11781178

11791179
schema = pyarrow.schema(
11801180
[("foo", pyarrow.map_(pyarrow.string(), pyarrow.int64()))]

0 commit comments

Comments
 (0)