From 4696692e224fd3d401755904e4283cb5be2d90f8 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Thu, 28 Aug 2025 10:09:14 -0700 Subject: [PATCH] disable bodo test --- tests/integration/test_reads.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_reads.py b/tests/integration/test_reads.py index a33b1a36bc..518782c99c 100644 --- a/tests/integration/test_reads.py +++ b/tests/integration/test_reads.py @@ -339,6 +339,7 @@ def test_daft_nan_rewritten(catalog: Catalog) -> None: assert math.isnan(df.to_pydict()["col_numeric"][0]) +@pytest.mark.skip(reason="Bodo should not monekeypatch PyArrowFileIO, https://github.com/apache/iceberg-python/issues/2400") @pytest.mark.integration @pytest.mark.filterwarnings("ignore") @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])