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:
parent
043fb61ab5
commit
a822308969
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user