// This is [Serial] because it modifies ClusterCSIDriver.var _ = g.Describe("[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io] vSphere CSI Driver Configuration", func() { defer g.GinkgoRecover() var ( ctx = context.Background() oc = exutil.NewCLI(projectName) originalDriverConfigSpec *opv1.CSIDriverConfigSpec )
o.SetDefaultEventuallyTimeout(5 * time.Minute) o.SetDefaultEventuallyPollingInterval(5 * time.Second)
In OCP Origin we have the above test playing with global variables for poll interval and poll timeout which is causing all other tests in origin to have flakes.
a networking test is failing because we are not polling correctly, this above test overrode the default poll value of 10ms and instead made it poll 5sec which caused the test to fail because out poll timeout was itself only 5seconds
Please don't use the global variables or maybe we can unset them after the test run is over?
Please note that this causes flakes that are hard to debug, we didn't know what was causing the poll interval to be 5seconds instead of the default 10ms.
- clones
-
OCPBUGS-48449 [sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles] The collection profiles feature-set is breaking other tests in techpreview lane
- ON_QA
- links to