django-auditlog/src/auditlog_tests/test_settings.py

25 lines
440 B
Python
Raw Normal View History

"""
Settings file for the Auditlog test suite.
"""
SECRET_KEY = 'test'
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'auditlog',
'auditlog_tests',
]
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'auditlog.middleware.AuditlogMiddleware',
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
2015-06-03 14:45:30 +00:00
'NAME': 'auditlog_tests.db',
}
}