toddlers/setup.cfg
Carl George f254995992 Ignore deprecation warnings that are out of our control
Signed-off-by: Carl George <carlwgeorge@gmail.com>
2024-07-10 19:49:13 -05:00

18 lines
593 B
INI

[flake8]
show-source = True
max-line-length = 100
exclude = .git,.tox,dist,*egg,build,tools
#ignore =
# Configure flake8-import-order
application-import-names = toddlers
import-order-style = google
[tool:pytest]
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.*