From 2def9f9e67bd23c31a5012f47cb97d0e2413de8b Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 8 Oct 2016 20:11:31 +0000 Subject: [PATCH] Added ghostdriver log dir creation - Legacy-Id: 12108 --- bin/setupenv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/setupenv b/bin/setupenv index 07e486c29..5745a7b2c 100755 --- a/bin/setupenv +++ b/bin/setupenv @@ -17,7 +17,8 @@ shutil.copyfile(os.path.join(basedir, 'docker/settings_local.py'), os.path.join( from ietf.settings_sqlitetest import * # we don't import from django.conf here, on purpose for dir in [ AGENDA_PATH, IDSUBMIT_REPOSITORY_PATH, IDSUBMIT_STAGING_PATH, - INTERNET_DRAFT_ARCHIVE_DIR, os.path.dirname(DRAFT_ALIASES_PATH), PHOTOS_DIR, ]: + INTERNET_DRAFT_ARCHIVE_DIR, os.path.dirname(DRAFT_ALIASES_PATH), PHOTOS_DIR, + TEST_GHOSTDRIVER_LOG_PATH, ]: if not os.path.exists(dir): print("Creating %s" % dir) os.makedirs(dir)