We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15937a commit 2ba627aCopy full SHA for 2ba627a
1 file changed
tests/integration/test_reads.py
@@ -342,7 +342,11 @@ def test_daft_nan_rewritten(catalog: Catalog) -> None:
342
@pytest.mark.integration
343
@pytest.mark.filterwarnings("ignore")
344
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
345
-def test_bodo_nan(catalog: Catalog) -> None:
+def test_bodo_nan(catalog: Catalog, monkeypatch: pytest.MonkeyPatch) -> None:
346
+ # Avoid local Mac issues (see GH-2225)
347
+ monkeypatch.setenv("BODO_DATAFRAME_LIBRARY_RUN_PARALLEL", "0")
348
+ monkeypatch.setenv("FI_PROVIDER", "tcp")
349
+
350
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
351
df = table_test_null_nan_rewritten.to_bodo()
352
assert len(df) == 3
0 commit comments