Skip to content
Merged
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
5 changes: 5 additions & 0 deletions conformance/conformance.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ func DefaultOptions(t *testing.T) confsuite.ConformanceOptions {

exemptFeatures := confsuite.ParseSupportedFeatures(*confflags.ExemptFeatures)
skipTests := confsuite.ParseSkipTests(*confflags.SkipTests)
namespaceLabels := confsuite.ParseKeyValuePairs(*confflags.NamespaceLabels)
namespaceAnnotations := confsuite.ParseKeyValuePairs(*confflags.NamespaceAnnotations)

// Initially, run the GatewayLayerProfile. This will expand as other profiles
// (EPP, ModelServer) are added and can be selected via flags in future iterations.
conformanceProfiles := sets.New(GatewayLayerProfileName)
Expand Down Expand Up @@ -173,6 +176,8 @@ func DefaultOptions(t *testing.T) confsuite.ConformanceOptions {
ManifestFS: []fs.FS{&Manifests},
ReportOutputPath: *confflags.ReportOutput,
SkipProvisionalTests: *confflags.SkipProvisionalTests,
NamespaceLabels: namespaceLabels,
NamespaceAnnotations: namespaceAnnotations,
Comment on lines +179 to +180
Copy link
Contributor

Choose a reason for hiding this comment

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

@SinaChavoshi will any of your outstanding PRs benefit from this change?

// TODO: Add the inference extension specific fields to ConformanceOptions struct if needed,
// or handle them during report generation.
// GatewayAPIInferenceExtensionChannel: inferenceExtensionChannel,
Expand Down