Changes between Initial Version and Version 1 of Ticket #25351
- Timestamp:
- Sep 4, 2015, 5:37:41 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25351
- Property Easy pickings set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #25351 – Description
initial v1 3 3 The documentation for the Database Test Settings is lacking and can leave users such as me confused, if a simple example such as this was included it would help :) 4 4 5 {{{#!python 5 6 DATABASES = { 6 7 'default': { … … 9 10 'NAME': 'django', 10 11 'TEST': { 11 'NAME': 'test_ django_%s_%s' % (PY_VERSION, BUILD_NAME),12 'NAME': 'test_another_name', 12 13 }, 13 }, 14 14 }, 15 } 16 }}} 15 17 Thanks to MarkusH for the example and help :)