Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openshift-hack/cmd/k8s-tests-ext/k8s-tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ func main() {
hpaTestTimeout := time.Minute * 30
kubeTestsExtension.AddSuite(e.Suite{
Name: "kubernetes/autoscaling/hpa",
Qualifiers: []string{"name.contains('[Feature:HPA]')"}, // Note that this does not use withExcludedTestsFilter to be able to run DedicatedJob labelled tests.
Parallelism: 3, // HPA tests have high CPU + memory usage, so we cannot have a high level of parallelism here.
Qualifiers: []string{"name.contains('Feature:HPA')"}, // Note that this does not use withExcludedTestsFilter to be able to run DedicatedJob labelled tests.
Parallelism: 3, // HPA tests have high CPU + memory usage, so we cannot have a high level of parallelism here.
TestTimeout: &hpaTestTimeout,
})

Expand Down
2 changes: 1 addition & 1 deletion openshift-hack/cmd/k8s-tests-ext/labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func addLabelsToSpecs(specs et.ExtensionTestSpecs) {
},
// tests that will be configured to run manually through their own dedicated prow jobs
"[DedicatedJob]": {
"[Feature:HPA]",
"Feature:HPA",
},
}

Expand Down