As I'm developing unit tests for my django application I find myself running manage.py test over and over and over again. I'm using a MySQL backend and have many models in the project, so the ramp up time to create all of the test databases is about 30 seconds.
How can I use make each unit test faster by keeping the database tables created and just clearing them of all records in-between runs of the "manage.py test" command?