We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e95bb5b commit 9191e45Copy full SHA for 9191e45
pyproject.toml
@@ -221,6 +221,9 @@ timeout = 300
221
markers = [
222
"run_alone: marks tests that must run in isolation",
223
]
224
+# Ignore DeprecationWarnings coming from Uvicorn's internal imports. Uvicorn relies on deprecated
225
+# modules from `websockets`, which triggers warnings during tests. These are safe to ignore until
226
+# Uvicorn updates its internals.
227
filterwarnings = [
228
"ignore:websockets.legacy is deprecated:DeprecationWarning",
229
"ignore:websockets.server.WebSocketServerProtocol is deprecated:DeprecationWarning",
0 commit comments