Skip to content

Commit feb8199

Browse files
committed
add templates to test pipeline
1 parent 44249c9 commit feb8199

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/settings.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,17 @@ def local_path(path):
118118
}
119119
}
120120
}
121+
122+
123+
TEMPLATES = [
124+
{
125+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
126+
'APP_DIRS': True,
127+
'DIRS': TEMPLATE_DIRS,
128+
},
129+
{
130+
'BACKEND': 'django.template.backends.jinja2.Jinja2',
131+
'APP_DIRS': True,
132+
'DIRS': TEMPLATE_DIRS,
133+
}
134+
]

0 commit comments

Comments
 (0)