From 9fbedd244cc589fc2007e8aa2edcbc8a6d05c7a1 Mon Sep 17 00:00:00 2001 From: Eric Riggs Date: Sun, 22 Apr 2018 13:51:14 -0400 Subject: [PATCH] - Put the log file in the /tmp folder. - This is temporary and should be fixed. Create /media when not found? Signed-off-by: Eric Riggs --- mayan/settings/testing/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/settings/testing/base.py b/mayan/settings/testing/base.py index 47b8dce5c9..b3848795d9 100644 --- a/mayan/settings/testing/base.py +++ b/mayan/settings/testing/base.py @@ -2,6 +2,7 @@ from __future__ import absolute_import, unicode_literals from .. import * # NOQA +COMMON_PRODUCTION_ERROR_LOG_PATH = '/tmp' INSTALLED_APPS += ('test_without_migrations',) TEMPLATES[0]['OPTIONS']['loaders'] = ( 'django.template.loaders.filesystem.Loader',