You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openshift-hack/cmd/k8s-tests-ext/k8s-tests.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ import (
5
5
"fmt"
6
6
"os"
7
7
"reflect"
8
+
"time"
8
9
9
10
"k8s.io/kubernetes/test/e2e/framework"
10
11
@@ -84,10 +85,12 @@ func main() {
84
85
Qualifiers: []string{withExcludedTestsFilter(`(name.contains('[Serial]') || labels.exists(l, l == '[Serial]'))`)},
85
86
})
86
87
88
+
hpaTestTimeout:=time.Minute*30
87
89
kubeTestsExtension.AddSuite(e.Suite{
88
90
Name: "kubernetes/autoscaling/hpa",
89
91
Qualifiers: []string{"name.contains('[Feature:HPA]')"}, // Note that this does not use withExcludedTestsFilter to be able to run DedicatedJob labelled tests.
90
92
Parallelism: 3, // HPA tests have high CPU + memory usage, so we cannot have a high level of parallelism here.
0 commit comments