Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ignore httpx deprecation warning #342

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,10 @@ testpaths = [
]
filterwarnings = [
"error",
# This is coming from the nested dependency
# chromadb -> opentelemetry-exporter-otlp-proto-grpc -> googleapis-common-protos
# This will be resolved by https://github.com/googleapis/python-api-common-protos/pull/187
"ignore::DeprecationWarning:pkg_resources",
"ignore::DeprecationWarning:google.rpc",
Comment on lines -105 to -109
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These ones are resolved in the meantime, so we can remove them now.

# httpx 0.27.0 deprecated some functionality that the test client of starlette /
# FastApi use. This should be resolved by the next release of these libraries.
# See https://github.com/encode/starlette/issues/2524
"ignore:The 'app' shortcut is now deprecated:DeprecationWarning"
]
xfail_strict = true

Expand Down