test: Add depreciated models to be excluded from coverage

ref: #833
This commit is contained in:
2025-06-16 14:59:18 +09:30
parent 239540c9ab
commit 2027f3fe97
6 changed files with 38 additions and 288 deletions

View File

@ -576,7 +576,10 @@ def organization_two(django_db_blocker):
with django_db_blocker.unblock():
item.delete()
try:
item.delete()
except:
pass
@ -597,7 +600,10 @@ def organization_three(django_db_blocker):
with django_db_blocker.unblock():
item.delete()
try:
item.delete()
except:
pass