From de7637ad6d9024a59a94807511015ac8463f868b Mon Sep 17 00:00:00 2001 From: Boris Pavlovic Date: Tue, 6 Oct 2015 22:12:59 -0700 Subject: [PATCH] Generate report at the end of rally-dsvm job Seems like report can't be generated in 100% cases. Sometimes it crashes with such message: RallyException: Unable to calculate the mean: no values processed so far. It makes sense to genereate report after we get raw results, so it will be possible to debug such cases locally. Change-Id: I6d93617dfaf6d954a85b1428f828f7b57f6b6212 --- tests/ci/rally-gate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci/rally-gate.sh b/tests/ci/rally-gate.sh index abbb541a..f75c3157 100755 --- a/tests/ci/rally-gate.sh +++ b/tests/ci/rally-gate.sh @@ -67,12 +67,12 @@ python $BASE/new/rally/rally/ui/utils.py render\ tests/ci/rally-gate/index.mako > rally-plot/extra/index.html cp $TASK rally-plot/task.txt tar -czf rally-plot/plugins.tar.gz -C $RALLY_PLUGINS_DIR . -rally task report --out rally-plot/results.html -gzip -9 rally-plot/results.html rally task results | python -m json.tool > rally-plot/results.json gzip -9 rally-plot/results.json rally task detailed > rally-plot/detailed.txt gzip -9 rally-plot/detailed.txt rally task detailed --iterations-data > rally-plot/detailed_with_iterations.txt gzip -9 rally-plot/detailed_with_iterations.txt +rally task report --out rally-plot/results.html +gzip -9 rally-plot/results.html rally task sla_check | tee rally-plot/sla.txt