Private
Public Access
0
0

chore(pyproject): remove send_result deprecation filterwarnings (Phase 6.3)

Removes the filterwarnings entry that silenced the DeprecationWarning
emitted by the now-removed send() function. The filter was added in
data_oriented_error_handling_20260606 (commit 73cf321c) specifically
to silence the send() deprecation; no other deprecation in the
codebase was silenced by it. Now that send() is gone, the filter is
obsolete.

Verification: 'uv run rg ignore:Use ai_client.send_result pyproject.toml'
returns 0 hits.
This commit is contained in:
2026-06-15 18:53:48 -04:00
parent e40b122b1b
commit 90122df357
-3
View File
@@ -43,9 +43,6 @@ dev = [
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Use ai_client.send_result.*:DeprecationWarning",
]
markers = [
"integration: marks tests as integration tests (requires live GUI)",
"clean_install: clean install verification (opt-in via RUN_CLEAN_INSTALL_TEST=1)",