tests: ignore setuptools 67.3.0 DeprecationWarning

Ignore new `pkg_resources.declare_namespace` DeprecationWarning
which was added in the setuptools 67.3.0 release.
This commit is contained in:
bastimeyer 2023-02-15 18:35:09 +01:00 committed by Forrest
parent 0696f48593
commit c3ff5a0090
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ build-file = "streamlink/_version.py"
[tool.pytest.ini_options]
filterwarnings = [
"always",
"ignore:.*pkg_resources\\.declare_namespace.*:DeprecationWarning",
]