Merge "Resolving Rally scenario tests directory name issue"

This commit is contained in:
Jenkins 2015-05-13 00:11:50 +00:00 committed by Gerrit Code Review
commit f6fb0edefc
2 changed files with 2 additions and 2 deletions

View File

@ -277,7 +277,7 @@ function configure_scenario_rally_tests {
if ! [ -d $HOME/.rally/plugins ]; then
mkdir -p $HOME/.rally/plugins/cue_scenarios
SCENARIOS=$(find $DEST/cue/tests/rally-scenarios/plugins -type f -name "*.py")
SCENARIOS=$(find $DEST/cue/rally-jobs/plugins -type f -name "*.py")
for SCENARIO in $SCENARIOS
do
FILE_NAME=$(echo $SCENARIO | rev | cut -d/ -f1 | rev)

View File

@ -15,7 +15,7 @@ cd devstack
echo "enable_service rally" >> local.conf
cat << EOF >> /home/vagrant/.bash_aliases
alias run_rally_cue_scenarios="rally -v --debug task start --task ~/cue/tests/rally-scenarios/cue-scenarios.yaml"
alias run_rally_cue_scenarios="rally -v --debug task start --task ~/cue/rally-jobs/cue-scenarios.yaml"
EOF