Skip to content

Commit 5efec28

Browse files
committed
ignore just the ray tests
1 parent c7121b4 commit 5efec28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ filterwarnings = [
163163
"ignore:You are using a Python version.*which Google will stop supporting:FutureWarning:google.api_core",
164164
# Python 3.13 sqlite3 module ResourceWarnings for unclosed database connections
165165
"ignore:unclosed database in <sqlite3.Connection object*:ResourceWarning",
166-
# Ignore Ray subprocess cleanup warnings
167-
"ignore:unclosed file:ResourceWarning",
168-
"ignore:subprocess.*is still running:ResourceWarning",
169166
]
170167

171168
[tool.black]

tests/integration/test_reads.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@ def test_ray_nan(catalog: Catalog, ray_session: Any) -> None:
366366

367367

368368
@pytest.mark.integration
369+
@pytest.mark.filterwarnings("ignore")
369370
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
370371
def test_ray_nan_rewritten(catalog: Catalog, ray_session: Any) -> None:
371372
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
@@ -378,6 +379,7 @@ def test_ray_nan_rewritten(catalog: Catalog, ray_session: Any) -> None:
378379

379380

380381
@pytest.mark.integration
382+
@pytest.mark.filterwarnings("ignore")
381383
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
382384
@pytest.mark.skip(reason="Fixing issues with NaN's: https://github.com/apache/arrow/issues/34162")
383385
def test_ray_not_nan_count(catalog: Catalog, ray_session: Any) -> None:
@@ -387,6 +389,7 @@ def test_ray_not_nan_count(catalog: Catalog, ray_session: Any) -> None:
387389

388390

389391
@pytest.mark.integration
392+
@pytest.mark.filterwarnings("ignore")
390393
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
391394
def test_ray_all_types(catalog: Catalog, ray_session: Any) -> None:
392395
table_test_all_types = catalog.load_table("default.test_all_types")

0 commit comments

Comments
 (0)