Ignore deprecation warnings from coreapi

This commit is contained in:
Pravin Kamble 2026-01-30 20:03:33 +05:30
parent a4aaf27c5e
commit 2c03b63248

View File

@ -118,7 +118,10 @@ keep_full_version = true
[tool.pytest.ini_options]
addopts = "--tb=short --strict-markers -ra"
testpaths = [ "tests" ]
filterwarnings = [ "ignore:CoreAPI compatibility is deprecated*:rest_framework.RemovedInDRF318Warning" ]
filterwarnings = [
"ignore:CoreAPI compatibility is deprecated*:rest_framework.RemovedInDRF318Warning",
"ignore:'cgi' is deprecated:DeprecationWarning",
]
[tool.coverage.run]
# NOTE: source is ignored with pytest-cov (but uses the same).