id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
142	when running tests syncdb is run without --migrate when SOUTH_TESTS_MIGRATE=True and using Django trunk	peimei@…	andrew	"I've set SOUTH_TESTS_MIGRATE=True in settings and tryed to run ./manage.py tests
The output was:
{{{
arikon@sergey-belov:~/projects/bond/src/bond$ ./manage.py test tickets
Creating test database...
Syncing...
Creating table auth_permission
Creating table auth_group
Creating table auth_user
Creating table auth_message
Creating table django_content_type
Creating table django_session
Creating table django_admin_log
Creating table south_migrationhistory
Installing index for auth.Permission model
Installing index for auth.Message model
Installing index for admin.LogEntry model

Synced:
 > django.contrib.auth
 > django.contrib.contenttypes
 > django.contrib.sessions
 > django.contrib.admin
 > south

Not synced (use migrations):
 - bond.tickets
(use ./manage.py migrate to migrate these)
..
----------------------------------------------------------------------
Ran 2 tests in 0.005s
}}}
That ment that migrations were not run.
That was because of fix in Django: http://code.djangoproject.com/ticket/10080
"	defect	closed	major		commands	0.6-pre	fixed		
