Skip large-ops benchmarks

This benchmarks should be tested in another job.
Also small fix in devstack-integration script

Change-Id: I31944026dfbb4ffb3dc6cf791208cfaffb1a0364
Related: blueprint rally-gate-jobs
This commit is contained in:
Sergey Skripnick 2014-04-07 23:16:06 +03:00
parent 043fb61ab5
commit a822308969
2 changed files with 10 additions and 3 deletions

View File

@ -123,10 +123,17 @@ function init_rally() {
fi
}
# Run all benchmarks from samples dir to ensure it all works.
# Run benchmarks from samples dir
function run_all_benchmarks() {
for CONF in $DEST/rally/doc/samples/tasks/*/*.yaml; do
rally task start --task $CONF
case "$CONF" in
*large-ops*)
echo "Skipping large-ops benchmarks."
;;
*)
rally task start --task $CONF
;;
esac
done
}

View File

@ -18,7 +18,7 @@
RALLY_BASE=/opt/stack/new/rally
DEVSTACK_BASE=/opt/stack/new/devstack
cp $RALLY_BASE/contrib/devstack/* $DEVSTACK_BASE/
cp -r $RALLY_BASE/contrib/devstack/* $DEVSTACK_BASE/
export ENABLED_SERVICES=rally
export RUN_EXERCISES=rally