From aa9c0c27a7c24700cecca5ed4b460f14f4b2fb15 Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Wed, 14 Aug 2019 09:15:11 -0700 Subject: [PATCH] Skip known failures --- hack/run-e2e-test | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/hack/run-e2e-test b/hack/run-e2e-test index a641656d41..83bdbd5f58 100755 --- a/hack/run-e2e-test +++ b/hack/run-e2e-test @@ -110,7 +110,17 @@ if [[ "$GINKGO_FOCUS" == "\[ebs-csi-migration\]" ]]; then pushd ./tests/e2e-migration $DEP_PATH ensure popd - GO111MODULE=off go test -v -timeout 0 ./tests/e2e-migration/... -kubeconfig=$HOME/.kube/config -report-dir=$ARTIFACTS -ginkgo.focus="$FOCUS" -ginkgo.skip="\[Disruptive\]" -gce-zone=$REGION + # TODO known test failures to skip temporarily + # - should not allow expansion of pvcs without AllowVolumeExpansion property + # - Test passes but cleanup fails, need https://github.com/kubernetes/kubernetes/pull/81107 + # - (block volmode) Verify if offline PVC expansion works / should resize volume when PVC is edited while pod is using it + # - NodeExpand for BlockVolumes not well-defined, need more investigation and possibly https://github.com/container-storage-interface/spec/issues/380 + # - should provision storage with mount options + # - Known bug, need https://github.com/kubernetes/kubernetes/pull/80191 but not yet in a patch release + GO111MODULE=off go test -v -timeout 0 ./tests/e2e-migration/... -kubeconfig=$HOME/.kube/config -report-dir=$ARTIFACTS -ginkgo.focus="$FOCUS" -ginkgo.skip="\[Disruptive\]\ +|should.not.allow.expansion\ +|block.volmode.+volume-expand\ +|should.provision.storage.with.mount.options" -gce-zone=$REGION else go get -u github.com/onsi/ginkgo/ginkgo export KUBECONFIG=$HOME/.kube/config