mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-11 10:32:27 +08:00
20 lines
339 B
Python
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:'
|