From: JingLu5 Date: Sat, 1 Apr 2017 08:03:24 +0000 (+0000) Subject: Bugfix: take test case modification into effect in load_images.sh X-Git-Tag: opnfv-5.0.RC1~512 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F55%2F32855%2F1;p=yardstick.git Bugfix: take test case modification into effect in load_images.sh JIRA: YARDSTICK-622 Bug log: https://build.opnfv.org/ci/view/armband/job/yardstick-fuel-armband-baremetal-daily-danube/24/console This error is because the file changes done in the load_images.sh is not updated. After file modification, pip install -U . is required to tack changes into effect. Change-Id: I8be3ffc963e3d5cec861b68a33efc2fa5bdabbd2 Signed-off-by: JingLu5 --- diff --git a/tests/ci/load_images.sh b/tests/ci/load_images.sh index ec3ec4604..436d18d6d 100755 --- a/tests/ci/load_images.sh +++ b/tests/ci/load_images.sh @@ -254,6 +254,8 @@ main() for filename in tests/opnfv/test_cases/*; do sed -i "s/cidr: '10.0.1.0\/24'/cidr: '10.3.1.0\/24'/g" "${filename}" done + # Update file changes + pip install -U . else load_cirros_image load_ubuntu_image