Skip to content

Commit fa23c23

Browse files
committed
Drop some old warnings config
1 parent 7c56922 commit fa23c23

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

hypothesis-python/tests/common/setup.py

+1-12
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ def run():
2525
filterwarnings("ignore", category=ImportWarning)
2626
filterwarnings("ignore", category=FutureWarning, module="pandas._version")
2727

28-
# Fixed in recent versions but allowed by pytest=3.0.0; see #1630
29-
filterwarnings("ignore", category=DeprecationWarning, module="pluggy")
30-
31-
# See https://github.com/numpy/numpy/pull/432
28+
# See https://github.com/numpy/numpy/pull/432; still a thing as of 2022.
3229
filterwarnings("ignore", message="numpy.dtype size changed")
3330
filterwarnings("ignore", message="numpy.ufunc size changed")
3431

@@ -42,14 +39,6 @@ def run():
4239
category=UserWarning,
4340
)
4441

45-
# Imported by Pandas in version 1.9, but fixed in later versions.
46-
filterwarnings(
47-
"ignore", message="Importing from numpy.testing.decorators is deprecated"
48-
)
49-
filterwarnings(
50-
"ignore", message="Importing from numpy.testing.nosetester is deprecated"
51-
)
52-
5342
# User-facing warning which does not apply to our own tests
5443
filterwarnings("ignore", category=NonInteractiveExampleWarning)
5544

0 commit comments

Comments
 (0)