Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pandas/tests/io/pytables/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
"ignore:a closed node found in the registry:UserWarning"
),
pytest.mark.filterwarnings(r"ignore:tostring\(\) is deprecated:DeprecationWarning"),
pytest.mark.filterwarnings(
r"ignore:`np\.object` is a deprecated alias:DeprecationWarning"
),
]
8 changes: 8 additions & 0 deletions pandas/tests/window/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

pytestmark = [
# 2021-02-01 needed until numba updates their usage
pytest.mark.filterwarnings(
r"ignore:`np\.int` is a deprecated alias:DeprecationWarning"
),
]