diff --git a/plinth/tests/data/django_test_settings.py b/plinth/tests/data/django_test_settings.py index 7ae221dde..fe00c87b1 100644 --- a/plinth/tests/data/django_test_settings.py +++ b/plinth/tests/data/django_test_settings.py @@ -23,6 +23,12 @@ import os TEST_DATA_DIR = os.path.dirname(os.path.abspath(__file__)) +CACHES = { + 'default': { + 'BACKEND': 'django.core.cache.backends.dummy.DummyCache' + } +} + DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3',