AC-620 Updates to tests to create temp job output root, update tasks to write to stdout file directly instead of storing any stdout in memory.

This commit is contained in:
Chris Church
2013-11-21 17:41:51 -05:00
parent 9b49e80dc5
commit b59d9b766f
3 changed files with 14 additions and 9 deletions

View File

@@ -83,8 +83,9 @@ MEDIA_URL = '/media/'
# This directory should not be web-accessible.
PROJECTS_ROOT = os.path.join(BASE_DIR, 'projects')
# Absolute filesystem path to the directory to host job stdout
# This directory should not be web-accessible.
# Absolute filesystem path to the directory for job status stdout (default for
# development and tests, default for production defined in production.py). This
# directory should not be web-accessible
JOBOUTPUT_ROOT = os.path.join(BASE_DIR, 'job_output')
SITE_ID = 1