from .base import * # noqa: F401,F403 DEBUG = False CELERY_TASK_ALWAYS_EAGER = True CELERY_TASK_EAGER_PROPAGATES = True CACHES = { "default": { "BACKEND": "django.core.cache.backends.locmem.LocMemCache", "LOCATION": "fonrey-test", } } # Use synchronous in-memory session backend during tests; avoids Redis dependency. SESSION_ENGINE = "django.contrib.sessions.backends.db" PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]