Skip to content

Commit

Permalink
Merge pull request #479 from leonardoo/Django110Warning-Templates
Browse files Browse the repository at this point in the history
add templates to test pipeline
  • Loading branch information
cyberdelia committed Aug 1, 2015
2 parents 213b630 + feb8199 commit 304b15a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,17 @@ def local_path(path):
}
}
}


TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'DIRS': TEMPLATE_DIRS,
},
{
'BACKEND': 'django.template.backends.jinja2.Jinja2',
'APP_DIRS': True,
'DIRS': TEMPLATE_DIRS,
}
]

0 comments on commit 304b15a

Please sign in to comment.