I am running a few test cases in Django 1.6, and everytime I run a test, it creates the test DB and deletes it at the end. This takes up a some time and is really irritating when I am iterating to find simple errors.
Is there a way I can specify to manage.py that it should not create/delete databases every time a test is run?
You won't be able to with Django's default test runner. However, if you get the
django-nosepackage, you can enable database reuse with:However, you should not do this if you make any changes to your database schema.