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