diff --git a/tests/frame/to_arrow_test.py b/tests/frame/to_arrow_test.py index 3e8c704ea..70913ed15 100644 --- a/tests/frame/to_arrow_test.py +++ b/tests/frame/to_arrow_test.py @@ -12,6 +12,7 @@ from tests.utils import ConstructorEager +@pytest.mark.filterwarnings("ignore:.*is_sparse is deprecated:DeprecationWarning") def test_to_arrow( request: pytest.FixtureRequest, constructor_eager: ConstructorEager, diff --git a/tests/frame/write_parquet_test.py b/tests/frame/write_parquet_test.py index e4b826cfb..670e8c7c9 100644 --- a/tests/frame/write_parquet_test.py +++ b/tests/frame/write_parquet_test.py @@ -14,6 +14,7 @@ @pytest.mark.skipif(PANDAS_VERSION < (2, 0, 0), reason="too old for pyarrow") +@pytest.mark.filterwarnings("ignore:.*is_sparse is deprecated:DeprecationWarning") def test_write_parquet( constructor_eager: ConstructorEager, tmpdir: pytest.TempdirFactory,