Skip to content

Commit 304b15a

Browse files
committed
Merge pull request #479 from leonardoo/Django110Warning-Templates
add templates to test pipeline
2 parents 213b630 + feb8199 commit 304b15a

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)