Skip to content

Commit

Permalink
ignore httpx deprecation warning (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier authored Mar 4, 2024
1 parent d10720f commit dc150d1
Showing 1 changed file with 4 additions and 5 deletions.
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",
# 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

0 comments on commit dc150d1

Please sign in to comment.