Hacker News new | ask | show | jobs
by ProblemFactory 4312 days ago
> you might not like that fact that you can't skip migrations the same way you previously could with SOUTH_TESTS_MIGRATE = False.

Note that it's possible to squash a long series of migrations to just one "CREATE TABLE" version: https://docs.djangoproject.com/en/dev/topics/migrations/#squ...

After squashing, the new all-in-one migration should be used for tests, and should be more or less identical to syncdb.