angrybeanie_wagtail/env/lib/python3.12/site-packages/wagtail/test/settings_ui.py
2025-07-25 21:32:16 +10:00

29 lines
886 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from .settings import * # noqa: F403
# Settings meant to run the test suite with Djangos development server, for integration tests.
DATABASES["default"]["NAME"] = "ui_tests.db" # noqa: F405
INSTALLED_APPS += [ # noqa: F405
"pattern_library",
]
TEMPLATES[0]["OPTIONS"]["builtins"] = ["pattern_library.loader_tags"] # noqa: F405
PATTERN_LIBRARY = {
# Groups of templates for the pattern library navigation. The keys
# are the group titles and the values are lists of template name prefixes that will
# be searched to populate the groups.
"SECTIONS": (
(
"components",
["wagtailadmin/shared", "wagtailadmin/panels", "wagtailadmin/home"],
),
),
# Configure which files to detect as templates.
"TEMPLATE_SUFFIX": ".html",
"PATTERN_BASE_TEMPLATE_NAME": "",
"BASE_TEMPLATE_NAMES": [],
}
DEBUG = True