From 5ac7bba7ba8f411ed8daaf2055fde56eda152b6c Mon Sep 17 00:00:00 2001 From: Matt Molyneaux Date: Tue, 13 Jun 2017 12:30:22 +0100 Subject: [PATCH] Add missing context processor to test app --- tests/runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/runtests.py b/tests/runtests.py index ab0d196..3204b33 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -97,6 +97,7 @@ def main(): TEMPLATES=[{ 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': ['templates'], + 'OPTIONS': {'context_processors': ['django.contrib.auth.context_processors.auth']}, 'APP_DIRS': True, }], )