From 36afe95c2adf66abe435019fc8307d7e2308afbb Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 24 Apr 2014 16:47:53 -0700 Subject: [PATCH] Don't run rally in debug mode in ci Running rally with debug mode can result in extremely large console output. Change-Id: I1fd8c226cc2bcbc25f8acbc97b4eb8e767e7ad89 --- contrib/devstack/lib/rally | 4 ++-- tests_ci/rally-gate.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/devstack/lib/rally b/contrib/devstack/lib/rally index ed719fc45e..5018dc698a 100644 --- a/contrib/devstack/lib/rally +++ b/contrib/devstack/lib/rally @@ -30,8 +30,8 @@ RALLY_DIR=$DEST/rally RALLY_CONF_DIR=${RALLY_CONF_DIR:-/etc/rally} RALLY_CONF_FILE=rally.conf -# Debuge mode -RALLY_DEBUG=${RALLY_DEBUG:-True} +# Debug mode +RALLY_DEBUG=${RALLY_DEBUG:-False} # Support entry points installation of console scripts if [[ -d $RALLY_DIR/bin ]]; then diff --git a/tests_ci/rally-gate.sh b/tests_ci/rally-gate.sh index e3216abcd2..ef8a21cba5 100755 --- a/tests_ci/rally-gate.sh +++ b/tests_ci/rally-gate.sh @@ -18,7 +18,7 @@ PROJECT=`echo $ZUUL_PROJECT | cut -d \/ -f 2` SCENARIO=$BASE/new/$PROJECT/rally-scenarios/${RALLY_SCENARIO}.yaml rally use deployment --name devstack -rally -dv task start --task $SCENARIO +rally -v task start --task $SCENARIO mkdir rally-plot rally task plot2html --out rally-plot/results.html gzip -9 rally-plot/results.html