Mercurial > public > sg101
annotate gpp/test_settings.py @ 271:4746df47a538
Follow on to last rev (r292) for #126. Missed updating a shoutbox template. Also the repoze.timeago package uses UTC time by default. Change this to local time for now until we decide to switch over to UTC for everything.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 26 Sep 2010 17:42:00 +0000 |
parents | 28988cce138b |
children | 767cedc7d12a |
rev | line source |
---|---|
bgneal@214 | 1 """ |
bgneal@214 | 2 Settings to use when running tests. Uses sqlite for speed. |
bgneal@214 | 3 This idea was taken from |
bgneal@214 | 4 http://blog.davidziegler.net/post/370368042/test-database-settings-in-django |
bgneal@214 | 5 """ |
bgneal@214 | 6 from settings import * |
bgneal@214 | 7 |
bgneal@214 | 8 DATABASES = { |
bgneal@214 | 9 'default': { |
bgneal@214 | 10 'ENGINE': 'django.db.backends.sqlite3', |
bgneal@214 | 11 'NAME': 'dev.db', |
bgneal@214 | 12 }, |
bgneal@214 | 13 } |