From 45ce2ae08bea62cc417773abbf0e7a72f573a2ce Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 17 Jul 2019 16:41:34 -0700 Subject: [PATCH] Fix test failures caused by axes in buster Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/tests/data/django_test_settings.py | 6 ++++++ 1 file changed, 6 insertions(+) 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',