From a5856da810993233a2c1657cf5d9e7c67812d09f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 3 Apr 2018 00:19:24 -0400 Subject: [PATCH] Turn off DEBUG for the development test setting file to avoid filling the screen with debug messages during testing. Signed-off-by: Roberto Rosario --- mayan/settings/testing/development.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/settings/testing/development.py b/mayan/settings/testing/development.py index 3dac93a99d..a9804898f7 100644 --- a/mayan/settings/testing/development.py +++ b/mayan/settings/testing/development.py @@ -2,5 +2,6 @@ from __future__ import unicode_literals from .base import * # NOQA +DEBUG = False SIGNATURES_GPG_PATH = '/usr/bin/gpg1'