Skip to content

Commit

Permalink
Merge pull request #773 from nmaytan/comments_cleanup
Browse files Browse the repository at this point in the history
Remove old pytest warning ignores
  • Loading branch information
padraic-shafer authored Aug 6, 2024
2 parents 17589bb + c099d0f commit 15abbc9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 0 additions & 3 deletions tiled/_tests/test_writing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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."
Expand Down

0 comments on commit 15abbc9

Please sign in to comment.