From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Fri, 2 May 2025 17:56:50 +0200
Subject: tests: Ignore template_partials in INSTALLED_APPS

Don't use the template_partials while running the tests, it's currently
not packaged.

Forwarded: not-needed
---
 tests/settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/settings.py b/tests/settings.py
index e10338c..15f9a2a 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -31,7 +31,7 @@ INSTALLED_APPS = [
     # We are not actively using template-partials; we just want more nesting
     # in our template loader configuration, see
     # https://github.com/django-commons/django-debug-toolbar/issues/2109
-    "template_partials",
+    #"template_partials",
     "tests",
 ]
 
