diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index fc74cd68..70a332b8 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -16,6 +16,7 @@ Development Thanks to `@illia-v (Illia Volochii) `_ for the PR (`#580 `_). - Update copyright year. +- Update pytest configuration. 4.39.1 ------ diff --git a/tests/.configs/pytest-py27.ini b/tests/.configs/pytest-py27.ini index 300291b1..8901a901 100644 --- a/tests/.configs/pytest-py27.ini +++ b/tests/.configs/pytest-py27.ini @@ -1,7 +1,10 @@ [pytest] testpaths = tests/unit/ python_files = test_*_py2_py3.py +asyncio_mode = auto 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:The \`scipy(.*?)\` namespace is deprecated(.*):DeprecationWarning ignore:ssl\.PROTOCOL_TLS is deprecated:DeprecationWarning:botocore.* diff --git a/tests/.configs/pytest-py35.ini b/tests/.configs/pytest-py35.ini index 4cb03f29..3c682e9a 100644 --- a/tests/.configs/pytest-py35.ini +++ b/tests/.configs/pytest-py35.ini @@ -1,7 +1,10 @@ [pytest] testpaths = tests/unit/ python_files = test_*_py3.py +asyncio_mode = auto 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:The \`scipy(.*?)\` namespace is deprecated(.*):DeprecationWarning ignore:ssl\.PROTOCOL_TLS is deprecated:DeprecationWarning:botocore.* diff --git a/tests/.configs/pytest.ini b/tests/.configs/pytest.ini index ebdb3d40..c5c93dc9 100644 --- a/tests/.configs/pytest.ini +++ b/tests/.configs/pytest.ini @@ -1,7 +1,10 @@ [pytest] testpaths = tests/unit/ python_files = test_*_py3*.py +asyncio_mode = auto 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:The \`scipy(.*?)\` namespace is deprecated(.*):DeprecationWarning ignore:ssl\.PROTOCOL_TLS is deprecated:DeprecationWarning:botocore.*