@@ -165,32 +165,14 @@ timeout = 60
165165filterwarnings = [
166166 # Fail on warnings
167167 " error" ,
168-
169- # Ignore our own warnings
170- " ignore:The `stream` parameter of `getpass.getpass` will have no effect:UserWarning" ,
171- " ignore:has moved to ipyparallel:DeprecationWarning" ,
172-
173168 # IPython warnings
174169 " ignore: `Completer.complete` is pending deprecation since IPython 6.0 and will be replaced by `Completer.completions`:PendingDeprecationWarning" ,
175170 " ignore: backends is deprecated since IPython 8.24, backends are managed in matplotlib and can be externally registered.:DeprecationWarning" ,
176171 " ignore: backend2gui is deprecated since IPython 8.24, backends are managed in matplotlib and can be externally registered.:DeprecationWarning" ,
177172
178173 # Ignore jupyter_client warnings
179- " ignore:unclosed <socket.socket:ResourceWarning" ,
180- " ignore:unclosed event loop:ResourceWarning" ,
181- " ignore:There is no current event loop:DeprecationWarning" ,
182- " ignore:zmq.eventloop.ioloop is deprecated in pyzmq 17. pyzmq now works with default tornado and asyncio eventloops.:DeprecationWarning" ,
183174 " module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning" ,
184175
185- # Ignore datetime warning.
186- " ignore:datetime.datetime.utc:DeprecationWarning" ,
187-
188- # https://github.com/python-trio/trio/issues/3053
189- " ignore:The `hash` argument is deprecated in favor of `unsafe_hash` and will be removed in or after August 2025." ,
190-
191- # ignore unclosed sqlite in traits
192- " ignore:unclosed database in <sqlite3.Connection:ResourceWarning" ,
193-
194176 # ignore deprecated non async during tests:
195177 " always:For consistency across implementations, it is recommended that:PendingDeprecationWarning" ,
196178
0 commit comments