diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-09-30 00:22:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-30 00:22:12 +0000 |
commit | b7c0a144e3f9d7b28b67802dab449aa2681948e4 (patch) | |
tree | 756e463125601c3613161f28b62f897b185cb9a9 /tests/ci | |
parent | 90ff55b51817c23d5070765435c69b585bd184fd (diff) | |
parent | 0c43a307ff30b11af348e17b7c81f278c21c93ff (diff) |
Merge "Disable tty in CI scripts to remove color in ansible output"
Diffstat (limited to 'tests/ci')
-rwxr-xr-x | tests/ci/experimental.sh | 2 | ||||
-rwxr-xr-x | tests/ci/periodic.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ci/experimental.sh b/tests/ci/experimental.sh index bb9694b7..7fa18f2f 100755 --- a/tests/ci/experimental.sh +++ b/tests/ci/experimental.sh @@ -31,7 +31,7 @@ qtip_repo='/home/opnfv/repos/qtip' docker cp . ${TEST_SUITE}_qtip:${qtip_repo} docker exec ${TEST_SUITE}_qtip bash -c "cd ${qtip_repo} && pip install -U -e ." -docker exec -t ${TEST_SUITE}_qtip bash -x ${qtip_repo}/qtip/scripts/quickstart.sh +docker exec ${TEST_SUITE}_qtip bash -x ${qtip_repo}/qtip/scripts/quickstart.sh echo "QTIP: Verify ${TEST_SUITE} done!" exit 0 diff --git a/tests/ci/periodic.sh b/tests/ci/periodic.sh index ba97739c..c970d351 100755 --- a/tests/ci/periodic.sh +++ b/tests/ci/periodic.sh @@ -15,7 +15,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" source ${script_dir}/utils/start_services.sh -docker exec -t ${TEST_SUITE}_qtip bash -x /home/opnfv/repos/qtip/qtip/scripts/quickstart.sh +docker exec ${TEST_SUITE}_qtip bash -x /home/opnfv/repos/qtip/qtip/scripts/quickstart.sh echo "${TEST_SUITE} QPI done!" |