From 4de9f2686506a502eaeac7e2313d90ee06961627 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 12 Jan 2017 07:46:35 -0500 Subject: [PATCH] run_tests.sh: default WORKSPACE to /tmp When I run p-o-i on my laptop, logs go into / which is weird. Default $WORKSPACE to /tmp, so when we run the scripts outside OpenStack Infra environment, logs are visible in a safe place. Change-Id: Ib8b0f9417098bcf703e31984804f2b72a8d93866 --- run_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run_tests.sh b/run_tests.sh index 14988949f..160e4d0f0 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -13,6 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. +export WORKSPACE=${WORKSPACE:-/tmp} export PUPPET_MAJ_VERSION=${PUPPET_MAJ_VERSION:-3} export SCENARIO=${SCENARIO:-scenario001} export MANAGE_PUPPET_MODULES=${MANAGE_PUPPET_MODULES:-true}