From bf7fac8aa0a2ec969056eb9858781739342a70c6 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Sat, 16 Oct 2021 03:34:24 +0000 Subject: [PATCH] test: upgrade to csi-test v4.3.0 --- test/sanity/run-test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/sanity/run-test.sh b/test/sanity/run-test.sh index f56a84ac8..04ad03dee 100755 --- a/test/sanity/run-test.sh +++ b/test/sanity/run-test.sh @@ -39,7 +39,7 @@ function install_csi_sanity_bin { mkdir -p $GOPATH/src/github.com/kubernetes-csi pushd $GOPATH/src/github.com/kubernetes-csi export GO111MODULE=off - git clone https://github.com/kubernetes-csi/csi-test.git -b v4.2.0 + git clone https://github.com/kubernetes-csi/csi-test.git -b v4.3.0 pushd csi-test/cmd/csi-sanity make install popd @@ -82,8 +82,8 @@ CSI_SANITY_BIN=$GOPATH/bin/csi-sanity if [ -z "$GITHUB_ACTIONS" ] then # if not running on github actions, do not use sudo - "$CSI_SANITY_BIN" --ginkgo.v --csi.secrets="$(pwd)/test/sanity/secrets.yaml" --csi.testvolumeparameters="$(pwd)/test/sanity/params.yaml" --csi.endpoint="$endpoint" --ginkgo.skip='create a volume with already existing name and different capacity|should fail when requesting to create a volume with already existing name and different capacity|should fail when the requested volume does not exist|should return appropriate capabilities' + "$CSI_SANITY_BIN" --ginkgo.v --csi.secrets="$(pwd)/test/sanity/secrets.yaml" --csi.testvolumeparameters="$(pwd)/test/sanity/params.yaml" --csi.endpoint="$endpoint" --ginkgo.skip='create a volume with already existing name and different capacity|should fail when requesting to create a volume with already existing name and different capacity|should fail when the requested volume does not exist' else # if running on github actions, use sudo - sudo "$CSI_SANITY_BIN" --ginkgo.v --csi.secrets="$(pwd)/test/sanity/secrets.yaml" --csi.testvolumeparameters="$(pwd)/test/sanity/params.yaml" --csi.endpoint="$endpoint" --ginkgo.skip='create a volume with already existing name and different capacity|should fail when requesting to create a volume with already existing name and different capacity|should fail when the requested volume does not exist|should return appropriate capabilities' + sudo "$CSI_SANITY_BIN" --ginkgo.v --csi.secrets="$(pwd)/test/sanity/secrets.yaml" --csi.testvolumeparameters="$(pwd)/test/sanity/params.yaml" --csi.endpoint="$endpoint" --ginkgo.skip='create a volume with already existing name and different capacity|should fail when requesting to create a volume with already existing name and different capacity|should fail when the requested volume does not exist' fi