Skip to content

Commit

Permalink
remove pd-extreme tests temp
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnylovestiramisu committed Jan 7, 2025
1 parent 33bd34e commit b42f936
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions test/e2e/tests/resize_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
Expect(cloudDisk.Status).To(Equal(readyState))
Expect(cloudDisk.SizeGb).To(Equal(defaultSizeGb))
Expect(cloudDisk.Name).To(Equal(volName))
Expect(cloudDisk.ProvisionedIops).To(Equal(2500))
Expect(cloudDisk.ProvisionedIops).To(Equal(int64(2500)))

defer func() {
// Delete Disk
Expand Down Expand Up @@ -131,7 +131,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
cloudDisk, err = computeService.Disks.Get(p, z, volName).Do()
Expect(err).To(BeNil(), "Get cloud disk failed")
Expect(cloudDisk.SizeGb).To(Equal(newSizeGb))
Expect(cloudDisk.ProvisionedIops).To(Equal(3000))
Expect(cloudDisk.ProvisionedIops).To(Equal(int64(3000)))

// Resize node
_, err = client.NodeExpandVolume(volume.VolumeId, publishDir, newSizeGb)
Expand Down
14 changes: 7 additions & 7 deletions test/e2e/tests/single_zone_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
Expect(err).To(BeNil(), "Failed to go through volume lifecycle")
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
Entry("on hyperdisk-throughput", hdtDiskType),
Entry("on pd-ssd", ssdDiskType),
)
Expand Down Expand Up @@ -378,7 +378,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
Expect(err).To(BeNil(), "ControllerPublishVolume failed")
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

It("Should successfully create RePD in two zones in the drivers region when none are specified", func() {
Expand Down Expand Up @@ -465,7 +465,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
}()
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

DescribeTable("Should create and delete pd-extreme disk with default iops",
Expand Down Expand Up @@ -507,7 +507,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
Expect(gce.IsGCEError(err, "notFound")).To(BeTrue(), "Expected disk to not be found")
}()
},
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

DescribeTable("Should create and delete disk with labels",
Expand Down Expand Up @@ -557,7 +557,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
}()
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

It("Should create and delete snapshot for the volume with default zone", func() {
Expand Down Expand Up @@ -724,7 +724,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
Expect(err).To(BeNil(), "Failed to go through volume lifecycle after restoring CMEK key")
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

It("Should create disks, attach them places, and verify List returns correct results", func() {
Expand Down Expand Up @@ -1019,7 +1019,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
}()
},
Entry("on pd-standard", standardDiskType),
Entry("on pd-extreme", extremeDiskType),
// Entry("on pd-extreme", extremeDiskType),
)

// Use the region of the test location.
Expand Down

0 comments on commit b42f936

Please sign in to comment.