68
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
31
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.
- [Django]-Necessity of explicit cursor.close()
- [Django]-Django Templating: how to access properties of the first item in a list
- [Django]-Django.contrib.gis.db.backends.postgis vs django.db.backends.postgresql_psycopg2
Source:stackexchange.com