Suppress FastAPI example/examples deprecation warnings

The warnings are cosmetic - we use 'example' instead of 'examples' because it works better for pre-filling Swagger UI input fields with default values.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 13:47:12 -05:00
parent 999265e90e
commit c2a274f47f
+6
View File
@@ -42,3 +42,9 @@ package = true
dev = [
"pytest>=8.3.5",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pydantic.*",
"ignore:.*example.* has been deprecated.*:DeprecationWarning",
]