Files
fedora-infra_ansible/roles/mailman/files/settings_test.py
Aurélien Bompard 6adbf5b2e3 Commit forgotten file
2014-06-16 16:07:22 +00:00

20 lines
339 B
Python

#-*- coding: utf-8 -*-
"""
Copy of the Django settings file, but with databases set for unit tests.
"""
from settings import *
try:
from settings_local import *
except ImportError:
pass
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
KITTYSTORE_URL = 'sqlite:'