Mercurial > public > sg101
view gpp/test_settings.py @ 278:2a795fd602a4
Fix #130. Upgrade to Blueprints CSS 1.0. However I didn't keep their change to the even class. That seemed to be messed up. Hand edited it to the old version.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 03 Oct 2010 00:26:42 +0000 |
parents | 28988cce138b |
children | 767cedc7d12a |
line wrap: on
line source
""" Settings to use when running tests. Uses sqlite for speed. This idea was taken from http://blog.davidziegler.net/post/370368042/test-database-settings-in-django """ from settings import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'dev.db', }, }