ignore a deprecation warning
This commit is contained in:
parent
35453ac022
commit
d3e8ac7b9f
|
@ -92,15 +92,18 @@ sqlalchemy-stubs = "^0.4"
|
||||||
spiffworkflow-backend = "spiffworkflow_backend.__main__:main"
|
spiffworkflow-backend = "spiffworkflow_backend.__main__:main"
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
# ignore three deprecation warnings from three different packages
|
# ignore deprecation warnings from various packages that we don't control
|
||||||
filterwarnings = [
|
filterwarnings = [
|
||||||
# note the use of single quote below to denote "raw" strings in TOML
|
# note the use of single quote below to denote "raw" strings in TOML
|
||||||
# kombu/utils/compat.py:82
|
# kombu/utils/compat.py:82
|
||||||
'ignore:SelectableGroups dict interface is deprecated. Use select.',
|
'ignore:SelectableGroups dict interface is deprecated. Use select.',
|
||||||
|
# flask_marshmallow/__init__.py:34
|
||||||
# marshmallow_sqlalchemy/convert.py:17
|
# marshmallow_sqlalchemy/convert.py:17
|
||||||
'ignore:distutils Version classes are deprecated. Use packaging.version instead.',
|
'ignore:distutils Version classes are deprecated. Use packaging.version instead.',
|
||||||
# connexion/spec.py:50
|
# connexion/spec.py:50
|
||||||
'ignore:Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release'
|
'ignore:Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release',
|
||||||
|
# connexion/decorators/validation.py:16
|
||||||
|
'ignore:Accessing jsonschema.draft4_format_checker is deprecated and will be removed in a future release.'
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.coverage.paths]
|
[tool.coverage.paths]
|
||||||
|
|
Loading…
Reference in New Issue