I am trying to add more tests for this django project. I am struggling to load SQLite database and debug. A easy way to debug would be accessing the SQLite3 database during testing. How do I find SQLite3 database location in Django project unit tests and see if my endpoints are being tested as I expect?
For example, the contest.py has
from django.test import Client
client = Client()
Is there a way of reverse engineer this class and find the sqlite3 storage file?