Re: Proposal: testdb cached by hash on migrations dirs

2015-04-18 Thread Andrew Farrell
Ah, thank you. It seems I should have read that part of the release notes more closely. Also, thank you to Greg Chapple for his work on that. On Fri, Apr 17, 2015 at 5:19 PM, Tim Graham wrote: > You might like to know about the --keepdb

Re: Proposal: testdb cached by hash on migrations dirs

2015-04-17 Thread Tim Graham
You might like to know about the --keepdb option in Django 1.8: https://docs.djangoproject.com/en/1.8/ref/django-admin/#django-admin-option---keepdb On Friday, April 17, 2015 at 6:04:00 PM UTC-4, Andrew Farrell wrote: > > Hi Folks, > > I've been working on speeding up a django-1.7 applications un

Proposal: testdb cached by hash on migrations dirs

2015-04-17 Thread Andrew Farrell
Hi Folks, I've been working on speeding up a django-1.7 applications unit tests to encourage developers to write more of them. Currently, django's strategy for ensuring that its database is fresh for each test run is to create a new test database and run all of the migrations on it. I've noticed t