Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / settings / test.py @ fcf4155e

History | View | Annotate | Download (226 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

    
13
LOGGING['handlers']['console']['level'] = 'WARNING'