diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba645001..a4e761482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ Write the date in place of the "Unreleased" in the case a new version is release ### Changed - Make `tiled.client` accept a Python dictionary when fed to `write_dataframe()`. - The `generated_minimal` example no longer requires pandas and instead uses a Python dict. +- Remove unused pytest-warning ignores from `test_writing.py`. ### Fixed - A bug in `Context.__getstate__` caused picking to fail if applied twice. diff --git a/tiled/_tests/test_writing.py b/tiled/_tests/test_writing.py index 61a0bf47f..c207afb2b 100644 --- a/tiled/_tests/test_writing.py +++ b/tiled/_tests/test_writing.py @@ -121,7 +121,6 @@ def test_write_array_chunked(tree): assert result.specs == specs -# @pytest.mark.filterwarnings(f"ignore:{WARNING_PANDAS_BLOCKS}:DeprecationWarning") def test_write_dataframe_full(tree): with Context.from_app( build_app(tree, validation_registry=validation_registry) @@ -147,7 +146,6 @@ def test_write_dataframe_full(tree): assert result.specs == specs -# @pytest.mark.filterwarnings(f"ignore:{WARNING_PANDAS_BLOCKS}:DeprecationWarning") def test_write_dataframe_partitioned(tree): with Context.from_app( build_app(tree, validation_registry=validation_registry) @@ -471,7 +469,6 @@ async def test_delete_non_empty_node(tree): client.delete("a") -# @pytest.mark.filterwarnings(f"ignore:{WARNING_PANDAS_BLOCKS}:DeprecationWarning") @pytest.mark.asyncio async def test_write_in_container(tree): "Create a container and write a structure into it."