Ignore deprecation warnings that are out of our control

Signed-off-by: Carl George <carlwgeorge@gmail.com>
This commit is contained in:
Carl George 2024-07-10 17:53:18 -05:00
parent 7761def130
commit f254995992

View file

@ -10,3 +10,9 @@ import-order-style = google
[tool:pytest] [tool:pytest]
addopts = --cov-config .coveragerc --cov=toddlers --cov-report=term-missing --cov-report xml --cov-report html addopts = --cov-config .coveragerc --cov=toddlers --cov-report=term-missing --cov-report xml --cov-report html
# ignore deprecation warnings that are out of our control
filterwarnings =
ignore::DeprecationWarning:bravado_core.*
ignore::DeprecationWarning:pdc_client.*
ignore::DeprecationWarning:pkg_resources.*
ignore::DeprecationWarning:swagger_spec_validator.*