Disable Django South when running unit tests? How do you avoid running all of the south migrations when doing django unit testing?

link|improve this question

73% accept rate
I am wondering why this matters? It is running this migrations on a test database when performing tests. Though if you remove south from INSTALLED_APPS you can prevent running its tests. – Torsten Apr 27 '11 at 2:21
feedback

2 Answers

up vote 12 down vote accepted

Yes, the South documentation describes how to do it, but basically just add this to your settings.py file:

SOUTH_TESTS_MIGRATE = False # To disable migrations and use syncdb instead
SKIP_SOUTH_TESTS = True # To disable South's own unit tests
link|improve this answer
This will not disable south from running migrations, it only presents south from running its own unittests. See kiddouck's post on how to disable all south migrations when doing django unit testing. – Philip Clarke Sep 20 '11 at 15:20
Thanks @ephesian, it's fixed. – Andrew C Sep 20 '11 at 18:09
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 syncdb instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.