Initial commit
This commit is contained in:
commit
fe5ef9132a
15 changed files with 888 additions and 0 deletions
19
tests/settings.py
Normal file
19
tests/settings.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue