From a46f3dd56b716cf2c9c918e4135d2248388ba030 Mon Sep 17 00:00:00 2001 From: Audrey Roy Greenfeld Date: Fri, 16 Sep 2016 11:49:13 -0700 Subject: [PATCH] Change template debugging back to False Since we're no longer using django_coverage_plugin. --- {{cookiecutter.project_slug}}/config/settings/test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/config/settings/test.py b/{{cookiecutter.project_slug}}/config/settings/test.py index 6b47bea3..6d07eb50 100644 --- a/{{cookiecutter.project_slug}}/config/settings/test.py +++ b/{{cookiecutter.project_slug}}/config/settings/test.py @@ -12,8 +12,7 @@ from .common import * # noqa # ------------------------------------------------------------------------------ # Turn debug off so tests run faster DEBUG = False -# But template debugging must be enabled for django_coverage_plugin -TEMPLATES[0]['OPTIONS']['debug'] = True +TEMPLATES[0]['OPTIONS']['debug'] = False # SECRET CONFIGURATION # ------------------------------------------------------------------------------