Skip to content

Commit 9fc03d5

Browse files
authored
chore: skip orc test if pyarrow.orc is not available
The pyarrow.orc module is an optional extension that isn't available internally.
1 parent b19ea98 commit 9fc03d5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/unit/test_dataframe_polars.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4193,6 +4193,7 @@ def test_df_to_pickle(scalars_df_index, scalars_pandas_df_index):
41934193

41944194

41954195
def test_df_to_orc(scalars_df_index, scalars_pandas_df_index):
4196+
pytest.importorskip("pyarrow.orc")
41964197
unsupported = [
41974198
"numeric_col",
41984199
"bytes_col",

0 commit comments

Comments
 (0)