Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / settings / test.py @ 483c9197

History | View | Annotate | Download (174 Bytes)

1
from synnefo.settings import *
2

    
3
DEBUG = True
4
TEST = True
5

    
6
DATABASES = {
7
    'default': {
8
        'ENGINE': 'sqlite3',
9
        'NAME': '/tmp/synnefo_test_db.sqlite',
10
    }
11
}
12