Django 1.3 & South
Running the latest Django Release Candidate, I noticed that all of my South data migrations were failing.
Debugging via pdb
led me to a a recent change in which the database
was being flushed after south ran, but before the tests ran. I found a
changeset that was committed after Django 1.3 beta-1,
#14661 that introduced the
flush to correct an issue with MySQL. It is a documented as a backwards
incompatible
change,
which will prevent SQL fixtures (and unfortunately South data
migrations).
After talking with Andrew Godwin at the PyCon Sprints, we decided to override the flush operation during testings. It is an unfortunate hack, but allows data migrations on Django 1.3.