I have a Django project that uses local PostgreSQL server. I\'m using a debugger to debug some weird bugs that I have. While the debugger is stopped on one of the tests, I t
Django's TestCase is wrapping every test in its own transaction. So your database is not being used any time you do a request through ORM.
TestCase