From cb32056df6c32dcc4c5693b7991def44164205d7 Mon Sep 17 00:00:00 2001 From: Olivier Bado-Faustin <12731381+Badatos@users.noreply.github.com> Date: Thu, 21 Nov 2024 14:29:27 +0100 Subject: [PATCH] Disable Debug in test_settings --- pod/main/test_settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pod/main/test_settings.py b/pod/main/test_settings.py index 08e02fdf66..46aacbee09 100644 --- a/pod/main/test_settings.py +++ b/pod/main/test_settings.py @@ -8,6 +8,8 @@ from ..settings import AUTH_PASSWORD_VALIDATORS, USE_I18N from ..settings import ROOT_URLCONF, WSGI_APPLICATION, TEMPLATES from ..settings import INSTALLED_APPS, MIDDLEWARE, AUTHENTICATION_BACKENDS +from ..settings import SERIALIZATION_MODULES, TAGULOUS_NAME_MAX_LENGTH + import os from bs4 import BeautifulSoup import requests @@ -129,4 +131,5 @@ def get_shared_secret(): AI_ENHANCEMENT_API_VERSION = "" # DEBUG +DEBUG = False USE_DEBUG_TOOLBAR = False