Skip to content
Draft
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
9 changes: 9 additions & 0 deletions pkg/test/extensions/binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,15 @@ func (binaries TestBinaries) ListTests(ctx context.Context, parallelism int, env
return nil, fmt.Errorf("encountered errors while listing tests: %s", strings.Join(errs, ";"))
}

var baseSpecs extensiontests.ExtensionTestSpecs
for _, spec := range allTests {
baseSpecs = append(baseSpecs, spec.ExtensionTestSpec)
}
baseSpecs = filterOutDisabledSpecs(baseSpecs)
addEnvironmentSelectors(baseSpecs)
addLabelsToSpecs(baseSpecs)
appendSuiteNames(baseSpecs)
Comment on lines +950 to +957

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing test names breaks significant amount of tooling for historical comparison, you would have to account for these renames in openshift-eng/ci-test-mapping.

However, there is not a 1-to-1 linkage of "suite name" to "test". Tests are composable into many different kinds of suites, the pattern of including the name in tests should be something that goes away


return allTests, nil
}

Expand Down