Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
TEMPLATES setting should define BACKEND
  • Loading branch information
mher committed Jan 9, 2017
1 parent 3da43cf commit 50f31c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests.py
Expand Up @@ -21,6 +21,11 @@
settings.INSTALLED_APPS = ('chartkick',) settings.INSTALLED_APPS = ('chartkick',)
settings.STATICFILES_DIRS = (chartkick.js(),) settings.STATICFILES_DIRS = (chartkick.js(),)
settings.STATIC_URL = '' settings.STATIC_URL = ''
settings.TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
},
]




import django import django
Expand Down

0 comments on commit 50f31c4

Please sign in to comment.