﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21234	DATABASES['other']['TEST_NAME'] is ignored is some situations.	Vernon Cole	nobody	"Attempting to test django using the following settings fails with an infinite wait.  It appears that 'TEST_NAME' is ignored, causing conflicting use of the (single) database.

I have determined that if `DATABASES['default']['NAME'] != DATABASES['other']['NAME']` then 'TEST_NAME' works correctly.
{{{
 DATABASES = {

    'default': {

        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'adotest',
        'USER': 'adotestuser',
        'PASSWORD': '12345678',
        'HOST': 'localhost',
        'OPTIONS': {

            'autocommit': True,
            },

        },

    'other': {

        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'adotest',
        'TEST_NAME': 'other_test',
        'USER': 'adotestuser',
        'PASSWORD': '12345678',
        'HOST': 'localhost',
        'OPTIONS': {

            'autocommit': True,
            },

    }

}
}}}"	Uncategorized	closed	Uncategorized	dev	Normal	duplicate			Unreviewed	0	0	0	0	0	0
