19 lines
421 B
Python
19 lines
421 B
Python
SECRET_KEY = "test-only"
|
|
DEBUG = True
|
|
USE_TZ = True
|
|
PRODUCTION = False
|
|
|
|
YKSA_SERVICE = "poller"
|
|
|
|
INSTALLED_APPS = [
|
|
"django.contrib.contenttypes",
|
|
"django.contrib.auth",
|
|
"yksa_kit",
|
|
"tests.testapp",
|
|
]
|
|
|
|
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
|
|
|
|
CACHES = {"default": {"BACKEND": "django.core.cache.backends.locmem.LocMemCache"}}
|
|
|
|
CELERY_TASK_ALWAYS_EAGER = True
|