From 59ca1640b43c5cf8db752e98bf7d4d26d4548a6e Mon Sep 17 00:00:00 2001 From: moisses89 <7888669+moisses89@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:09:53 +0100 Subject: [PATCH] Enable cache for testing --- config/settings/test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/settings/test.py b/config/settings/test.py index 0954ef94a..104b88f2d 100644 --- a/config/settings/test.py +++ b/config/settings/test.py @@ -50,3 +50,7 @@ "level": "DEBUG", } } + +CACHE_VIEW_DEFAULT_TIMEOUT = env.int( + "DEFAULT_CACHE_PAGE_TIMEOUT", default=60 +) # Enable cache for testing