@@ -190,25 +190,22 @@ strict = true
190
190
[tool .pytest .ini_options ]
191
191
testpaths = " tests"
192
192
xfail_strict = true
193
- addopts = " -s --log-cli-level=DEBUG"
194
- log_format = " %(levelname)-9s %(message)s"
195
- log_cli = true
196
- # filterwarnings = [
197
- # "error",
198
- # # Issue with python-multipart - we don't want to bump the minimum version of starlette.
199
- # "ignore::PendingDeprecationWarning:starlette",
200
- # # mistralai accesses model_fields on the instance, which is deprecated in Pydantic 2.11.
201
- # "ignore:Accessing the 'model_fields' attribute",
202
- # # boto3
203
- # "ignore::DeprecationWarning:botocore.*",
204
- # "ignore::RuntimeWarning:pydantic_ai.mcp",
205
- # # uvicorn (mcp server)
206
- # "ignore:websockets.legacy is deprecated.*:DeprecationWarning:websockets.legacy",
207
- # "ignore:websockets.server.WebSocketServerProtocol is deprecated:DeprecationWarning",
208
- # # random resource warnings; I suspect these are coming from vendor SDKs when running examples..
209
- # "ignore:unclosed <socket:ResourceWarning",
210
- # "ignore:unclosed event loop:ResourceWarning",
211
- # ]
193
+ filterwarnings = [
194
+ " error" ,
195
+ # Issue with python-multipart - we don't want to bump the minimum version of starlette.
196
+ " ignore::PendingDeprecationWarning:starlette" ,
197
+ # mistralai accesses model_fields on the instance, which is deprecated in Pydantic 2.11.
198
+ " ignore:Accessing the 'model_fields' attribute" ,
199
+ # boto3
200
+ " ignore::DeprecationWarning:botocore.*" ,
201
+ " ignore::RuntimeWarning:pydantic_ai.mcp" ,
202
+ # uvicorn (mcp server)
203
+ " ignore:websockets.legacy is deprecated.*:DeprecationWarning:websockets.legacy" ,
204
+ " ignore:websockets.server.WebSocketServerProtocol is deprecated:DeprecationWarning" ,
205
+ # random resource warnings; I suspect these are coming from vendor SDKs when running examples..
206
+ " ignore:unclosed <socket:ResourceWarning" ,
207
+ " ignore:unclosed event loop:ResourceWarning" ,
208
+ ]
212
209
213
210
# https://coverage.readthedocs.io/en/latest/config.html#run
214
211
[tool .coverage .run ]
0 commit comments