Changes between Initial Version and Version 2 of Ticket #21234
- Timestamp:
- Oct 7, 2013, 6:52:38 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21234 – Description
initial v2 1 1 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. 2 2 3 I have determined that if DATABASES['default']['NAME'] != DATABASES['other']['NAME']then 'TEST_NAME' works correctly.4 --- 3 I have determined that if `DATABASES['default']['NAME'] != DATABASES['other']['NAME']` then 'TEST_NAME' works correctly. 4 {{{ 5 5 DATABASES = { 6 6 … … 35 35 36 36 } 37 }}}