chore: Suppress deprecation warning for oidc_provider AppConfig

This commit is contained in:
Jennifer Richards 2023-05-16 13:21:12 -03:00
parent 374c1a40be
commit 76fa01b817
No known key found for this signature in database
GPG key ID: 9B2BF5C5ADDA6A6E

View file

@ -13,6 +13,7 @@ import warnings
from typing import Any, Dict, List, Tuple # pyflakes:ignore
warnings.simplefilter("always", DeprecationWarning)
warnings.filterwarnings("ignore", message="'oidc_provider' defines default_app_config") # hopefully only need until Django 4.1 or 4.2
warnings.filterwarnings("ignore", message="'urllib3\\[secure\\]' extra is deprecated")
warnings.filterwarnings("ignore", message="The logout\\(\\) view is superseded by")
warnings.filterwarnings("ignore", message="Report.file_reporters will no longer be available in Coverage.py 4.2", module="coverage.report")