Fix all integrations
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
"""Test-only settings overrides — used via DJANGO_SETTINGS_MODULE=app.test_settings."""
|
||||
from app.settings import * # noqa
|
||||
|
||||
from app.settings import * # noqa: F401, F403
|
||||
|
||||
CACHES = {
|
||||
"default": {
|
||||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
||||
"LOCATION": "gia-test-cache",
|
||||
}
|
||||
}
|
||||
|
||||
INSTALLED_APPS = [app for app in INSTALLED_APPS if app != "cachalot"] # noqa: F405
|
||||
|
||||
CHANNEL_LAYERS = {"default": {"BACKEND": "channels.layers.InMemoryChannelLayer"}}
|
||||
CACHALOT_ENABLED = False
|
||||
|
||||
Reference in New Issue
Block a user