Skip to content

Commit 5bdf9bb

Browse files
committed
revert: pyproject.toml pytest changes
Revert debugging pyproject.toml pytest changes, committed by mistake.
1 parent 8d0808f commit 5bdf9bb

File tree

1 file changed

+16
-19
lines changed

1 file changed

+16
-19
lines changed

pyproject.toml

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -190,25 +190,22 @@ strict = true
190190
[tool.pytest.ini_options]
191191
testpaths = "tests"
192192
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+
]
212209

213210
# https://coverage.readthedocs.io/en/latest/config.html#run
214211
[tool.coverage.run]

0 commit comments

Comments
 (0)