Skip to content

Commit

Permalink
cancel parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvz committed Apr 2, 2023
1 parent cffd14a commit 7c752ae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ e2e-test: install-ginkgo
if [ ! -z "$(EXTERNAL_E2E_TEST_BLOBFUSE)" ] || [ ! -z "$(EXTERNAL_E2E_TEST_BLOBFUSE_v2)" ] || [ ! -z "$(EXTERNAL_E2E_TEST_NFS)" ]; then \
bash ./test/external-e2e/run.sh;\
else \
ginkgo -p -vv --fail-fast --output-interceptor-mode=none ./test/e2e -- --project-root=$(shell pwd);\
ginkgo -vv --fail-fast --output-interceptor-mode=none ./test/e2e -- --project-root=$(shell pwd);\
fi

.PHONY: e2e-bootstrap
Expand Down
16 changes: 8 additions & 8 deletions test/e2e/dynamic_provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should create a NFSv3 volume on demand with mount options [nfs]", ginkgo.Serial, func() {
ginkgo.It("should create a NFSv3 volume on demand with mount options [nfs]", func() {
if isAzureStackCloud {
ginkgo.Skip("test case is not available for Azure Stack")
}
Expand Down Expand Up @@ -525,7 +525,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should create a NFSv3 volume on demand with zero mountPermissions [nfs]", ginkgo.Serial, func() {
ginkgo.It("should create a NFSv3 volume on demand with zero mountPermissions [nfs]", func() {
if isAzureStackCloud {
ginkgo.Skip("test case is not available for Azure Stack")
}
Expand Down Expand Up @@ -591,7 +591,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should create a private endpoint volume on demand", ginkgo.Serial, func() {
ginkgo.It("should create a private endpoint volume on demand", func() {
if isAzureStackCloud {
ginkgo.Skip("test case is not available for Azure Stack")
}
Expand Down Expand Up @@ -625,7 +625,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should create a private endpoint volume on demand with protocol [fuse2]", ginkgo.Serial, func() {
ginkgo.It("should create a private endpoint volume on demand with protocol [fuse2]", func() {
if isAzureStackCloud {
ginkgo.Skip("test case is not available for Azure Stack")
}
Expand Down Expand Up @@ -659,7 +659,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should create a private endpoint volume on demand with protocol [nfs]", ginkgo.Serial, func() {
ginkgo.It("should create a private endpoint volume on demand with protocol [nfs]", func() {
if isAzureStackCloud {
ginkgo.Skip("test case is not available for Azure Stack")
}
Expand Down Expand Up @@ -762,7 +762,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("should be able to unmount NFS volume if volume is already deleted [blob.csi.azure.com]", ginkgo.Serial, func() {
ginkgo.It("should be able to unmount NFS volume if volume is already deleted [blob.csi.azure.com]", func() {
pod := testsuites.PodDetails{
Cmd: "echo 'hello world' >> /mnt/test-1/data && while true; do sleep 1; done",
Volumes: []testsuites.VolumeDetails{
Expand Down Expand Up @@ -796,7 +796,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
test.Run(cs, ns)
})

ginkgo.It("[blob.csi.azure.com] verify examples", ginkgo.Serial, func() {
ginkgo.It("[blob.csi.azure.com] verify examples", func() {
createExampleDeployment := testCmd{
command: "bash",
args: []string{"hack/verify-examples.sh"},
Expand All @@ -806,7 +806,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
execTestCmd([]testCmd{createExampleDeployment})
})

ginkgo.It("volume mount is still valid after driver restart [blob.csi.azure.com]", ginkgo.Serial, func() {
ginkgo.It("volume mount is still valid after driver restart [blob.csi.azure.com]", func() {
pod := testsuites.PodDetails{
Cmd: "echo 'hello world' >> /mnt/test-1/data && while true; do sleep 3600; done",
Volumes: []testsuites.VolumeDetails{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/pre_provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Pre-Provisioned", func() {
test.Run(cs, ns)
})

ginkgo.It("should use existing credentials in k8s cluster", ginkgo.FlakeAttempts(2), func() {
ginkgo.It("should use existing credentials in k8s cluster", func() {
volumeSize := fmt.Sprintf("%dGi", defaultVolumeSize)
reclaimPolicy := v1.PersistentVolumeReclaimRetain
volumeBindingMode := storagev1.VolumeBindingImmediate
Expand Down

0 comments on commit 7c752ae

Please sign in to comment.