aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wkhtmltopdf/tests/run.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/wkhtmltopdf/tests/run.py b/wkhtmltopdf/tests/run.py
index e0021ab..4b3f65a 100644
--- a/wkhtmltopdf/tests/run.py
+++ b/wkhtmltopdf/tests/run.py
@@ -18,6 +18,7 @@ settings.configure(
}
},
INSTALLED_APPS=(
+ 'django.contrib.contenttypes',
'wkhtmltopdf.tests',
'wkhtmltopdf',
),
@@ -29,6 +30,14 @@ settings.configure(
MEDIA_URL='/media/',
STATIC_ROOT=os.path.join(DIRNAME, 'static'),
STATIC_URL='/static/',
+ TEMPLATES = [ # For Django >= 1.10. Ignored is lower versions
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'APP_DIRS': True,
+ 'DIRS': [],
+ 'OPTIONS': {},
+ },
+ ],
WKHTMLTOPDF_DEBUG=False,
)