How can I write a test to cover my apps.py files for each model in a django application? I need 100% code coverage and cannot figure out how to test these files. An example of one of my apps.py files:
from django.apps import AppConfig class ReportsConfig(AppConfig): name = 'reports'
django unit-testing code-coverage
Molly davey
source share