Disable Django South when running unit tests? How do you avoid running all of the south migrations when doing django unit testing?
|
feedback
|
|
Yes, the South documentation describes how to do it, but basically just add this to your settings.py file:
| |||||
feedback
|
|
Even though, you have selected the good answer, I think that you should consider the option SOUTH_TESTS_MIGRATE instead. It will prevent to run all the migrations on your test db, and run | ||||
|
feedback
|
southfrom INSTALLED_APPS you can prevent running its tests. – Torsten Apr 27 '11 at 2:21