mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-23 15:10:49 +03:00
* Add support for Pydantic v2 settings * Configure pipeline to run tests against different pydantic versions * Update Pydantic docs and examples for v2 * Fix compatibility with httpx v0.27.0
14 lines
703 B
INI
14 lines
703 B
INI
[pytest]
|
|
testpaths = tests/unit/
|
|
python_files = test_*_py3*.py
|
|
asyncio_mode = auto
|
|
markers =
|
|
pydantic: Tests with Pydantic as a dependency
|
|
filterwarnings =
|
|
ignore:Module \"dependency_injector.ext.aiohttp\" is deprecated since version 4\.0\.0:DeprecationWarning
|
|
ignore:Module \"dependency_injector.ext.flask\" is deprecated since version 4\.0\.0:DeprecationWarning
|
|
ignore:Please use \`.*?\` from the \`scipy.*?\`(.*?)namespace is deprecated\.:DeprecationWarning
|
|
ignore:Please import \`.*?\` from the \`scipy(.*?)\` namespace(.*):DeprecationWarning
|
|
ignore:\`scipy(.*?)\` is deprecated(.*):DeprecationWarning
|
|
ignore:ssl\.PROTOCOL_TLS is deprecated:DeprecationWarning:botocore.*
|