From 4553db3872265aac8e1520125bba88685bfca1b0 Mon Sep 17 00:00:00 2001 From: poornas Date: Fri, 30 Aug 2019 10:26:48 -0700 Subject: [PATCH] mint: turn off progress for awscli sync test (#8158) Bumping up to awscli 1.11.177 which supports --no-progress flag --- mint/build/awscli/install.sh | 2 +- mint/run/core/awscli/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mint/build/awscli/install.sh b/mint/build/awscli/install.sh index bd6617770..e31da2bdb 100755 --- a/mint/build/awscli/install.sh +++ b/mint/build/awscli/install.sh @@ -15,6 +15,6 @@ # limitations under the License. # -AWS_CLI_VERSION="1.11.112" +AWS_CLI_VERSION="1.11.177" python -m pip install awscli==$AWS_CLI_VERSION diff --git a/mint/run/core/awscli/test.sh b/mint/run/core/awscli/test.sh index 46c82b0b7..dd4674f56 100755 --- a/mint/run/core/awscli/test.sh +++ b/mint/run/core/awscli/test.sh @@ -863,7 +863,7 @@ function test_aws_s3_sync() { # if make bucket succeeds sync all the files in a directory if [ $rv -eq 0 ]; then - function="${AWS} s3 sync $MINT_DATA_DIR s3://${bucket_name}/" + function="${AWS} s3 sync --no-progress $MINT_DATA_DIR s3://${bucket_name}/" test_function=${function} out=$($function 2>&1) rv=$?