From 9fc03d5ccca233429c143f4e992916f45a5db200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Swe=C3=B1a=20=28Swast=29?= Date: Wed, 30 Jul 2025 11:09:04 -0500 Subject: [PATCH] chore: skip orc test if pyarrow.orc is not available The pyarrow.orc module is an optional extension that isn't available internally. --- tests/unit/test_dataframe_polars.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_dataframe_polars.py b/tests/unit/test_dataframe_polars.py index eae800d409..ab33a88f48 100644 --- a/tests/unit/test_dataframe_polars.py +++ b/tests/unit/test_dataframe_polars.py @@ -4193,6 +4193,7 @@ def test_df_to_pickle(scalars_df_index, scalars_pandas_df_index): def test_df_to_orc(scalars_df_index, scalars_pandas_df_index): + pytest.importorskip("pyarrow.orc") unsupported = [ "numeric_col", "bytes_col",