From 2a3acbf658ec6bf5a3d8615551a6ae3ba14ff022 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 5 Apr 2017 16:21:29 +0300 Subject: [PATCH] Fix tests for django 1.11 --- runtests.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/runtests.py b/runtests.py index 5137b33..292032c 100644 --- a/runtests.py +++ b/runtests.py @@ -33,6 +33,14 @@ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, }, ],