File tree 1 file changed +1
-12
lines changed
hypothesis-python/tests/common
1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,7 @@ def run():
25
25
filterwarnings ("ignore" , category = ImportWarning )
26
26
filterwarnings ("ignore" , category = FutureWarning , module = "pandas._version" )
27
27
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.
32
29
filterwarnings ("ignore" , message = "numpy.dtype size changed" )
33
30
filterwarnings ("ignore" , message = "numpy.ufunc size changed" )
34
31
@@ -42,14 +39,6 @@ def run():
42
39
category = UserWarning ,
43
40
)
44
41
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
-
53
42
# User-facing warning which does not apply to our own tests
54
43
filterwarnings ("ignore" , category = NonInteractiveExampleWarning )
55
44
You can’t perform that action at this time.
0 commit comments