84882e19e0
- Move several common bash functions to separate file - Add test hook for rally certificaiton task Change-Id: Idbb2a255a2a57a9d14f8a9527a8a62a489c6c637
14 lines
311 B
Bash
Executable File
14 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source $SCRIPT_DIR/../rally_gate_functions.sh
|
|
|
|
setUp
|
|
|
|
TASK=$RALLY_DIR/certification/openstack/task.yaml
|
|
TASK_ARGS=$RALLY_DIR/rally-jobs/certifcation_task_args.yaml
|
|
|
|
TASK_ARGS="--task-args-file $TASK_ARGS"
|
|
|
|
run $TASK $TASK_ARGS
|