Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 9af47af

Browse files
skip test for pandas<2
1 parent d989eb2 commit 9af47af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/system/small/test_session.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1967,6 +1967,11 @@ def test_read_parquet_gcs(
19671967
def test_read_orc_gcs(
19681968
session: bigframes.Session, scalars_dfs, gcs_folder, engine, filename
19691969
):
1970+
pytest.importorskip(
1971+
"pandas",
1972+
minversion="2.0.0",
1973+
reason="pandas<2 does not handle nullable int columns well",
1974+
)
19701975
scalars_df, _ = scalars_dfs
19711976
write_path = gcs_folder + test_read_orc_gcs.__name__ + "000000000000.orc"
19721977
read_path = gcs_folder + test_read_orc_gcs.__name__ + filename

0 commit comments

Comments
 (0)