We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c33e5e commit f037acaCopy full SHA for f037aca
pandas/tests/io/pytables/__init__.py
@@ -6,4 +6,7 @@
6
"ignore:a closed node found in the registry:UserWarning"
7
),
8
pytest.mark.filterwarnings(r"ignore:tostring\(\) is deprecated:DeprecationWarning"),
9
+ pytest.mark.filterwarnings(
10
+ r"ignore:`np\.object` is a deprecated alias:DeprecationWarning"
11
+ ),
12
]
pandas/tests/window/__init__.py
@@ -0,0 +1,8 @@
1
+import pytest
2
+
3
+pytestmark = [
4
+ # 2021-02-01 needed until numba updates their usage
5
+ r"ignore:`np\.int` is a deprecated alias:DeprecationWarning"
+]
0 commit comments