mirror of
https://github.com/django-components/django-components.git
synced 2025-08-01 20:52:19 +00:00
37 lines
1,023 B
Python
37 lines
1,023 B
Python
from pathlib import Path
|
|
from typing import Dict, Optional
|
|
|
|
import django
|
|
from django.conf import settings
|
|
|
|
|
|
def setup_test_config(components: Optional[Dict] = None):
|
|
if settings.configured:
|
|
return
|
|
|
|
settings.configure(
|
|
BASE_DIR=Path(__file__).resolve().parent,
|
|
INSTALLED_APPS=("django_components",),
|
|
TEMPLATES=[
|
|
{
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
"DIRS": [
|
|
"tests/templates/",
|
|
"tests/components/", # Required for template relative imports in tests
|
|
],
|
|
}
|
|
],
|
|
COMPONENTS={
|
|
"template_cache_size": 128,
|
|
**(components or {}),
|
|
},
|
|
MIDDLEWARE=["django_components.middleware.ComponentDependencyMiddleware"],
|
|
DATABASES={
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": ":memory:",
|
|
}
|
|
},
|
|
)
|
|
|
|
django.setup()
|