Skip to content

Commit b4f6be3

Browse files
committed
Skip disabled tests in openshift/build suite
1 parent 0385740 commit b4f6be3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/openshift-tests/e2e.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var staticSuites = []*ginkgo.TestSuite{
6868
Tests that exercise the OpenShift build functionality.
6969
`),
7070
Matches: func(name string) bool {
71-
return strings.Contains(name, "[Feature:Builds]")
71+
return !strings.Contains(name, "[Disabled") && strings.Contains(name, "[Feature:Builds]")
7272
},
7373
Parallelism: 7,
7474
// TODO: Builds are really flaky right now, remove when we land perf updates and fix io on workers

0 commit comments

Comments
 (0)