14 lines
411 B
Python
14 lines
411 B
Python
"""Test-only settings overrides — used via DJANGO_SETTINGS_MODULE=app.test_settings."""
|
|
|
|
from app.settings import * # noqa: F401, F403
|
|
|
|
CACHES = {
|
|
"default": {
|
|
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [app for app in INSTALLED_APPS if app != "cachalot"] # noqa: F405
|
|
|
|
CHANNEL_LAYERS = {"default": {"BACKEND": "channels.layers.InMemoryChannelLayer"}}
|