Skip to content

Commit d3c4628

Browse files
committed
UPSTREAM: <drop>: Remove duplicate VolumeGroupSnapshottableTestSuite from CSISuites
The VolumeGroupSnapshot e2e test was running twice in CI, causing the second execution to fail with timeouts and crashes. The test suite initializer InitVolumeGroupSnapshottableTestSuite was incorrectly added to both BaseSuites and CSISuites. Since CSISuites is created by appending to BaseSuites, this caused the same test to be registered and executed twice. The second run would fail because it attempted to create volume group snapshot resources that were still cleaning up from the first successful run. This removes the duplicate entry from CSISuites, ensuring the test only runs once.
1 parent 96593f3 commit d3c4628

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/e2e/storage/testsuites/base.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ var CSISuites = append(BaseSuites,
8080
return InitCustomEphemeralTestSuite(CSIEphemeralTestPatterns())
8181
},
8282
InitSnapshottableTestSuite,
83-
InitVolumeGroupSnapshottableTestSuite,
8483
InitSnapshottableStressTestSuite,
8584
InitVolumePerformanceTestSuite,
8685
InitPvcDeletionPerformanceTestSuite,

0 commit comments

Comments
 (0)