django-components/tests/django_test_setup.py
Emil Stenström 57a5aa0f4b
Only render dependencies that are used of a specific page (#52)
Co-authored-by: rbeard0330 <@dul2k3BKW6m>
2021-03-24 22:47:48 +01:00

18 lines
498 B
Python

import django
from django.conf import settings
if not settings.configured:
settings.configure(
INSTALLED_APPS=('django_components',),
TEMPLATES=[{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ["tests/templates/"],
}],
COMPONENTS={
'TEMPLATE_CACHE_SIZE': 128
},
MIDDLEWARE=['django_components.middleware.ComponentDependencyMiddleware'],
DATABASES={},
)
django.setup()