Skip to content

Commit

Permalink
only run update
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso committed Mar 19, 2023
1 parent d415231 commit 416db0d
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions vendor/knative.dev/networking/test/conformance/ingress/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,39 @@ import (
)

var stableTests = map[string]func(t *testing.T){
"basics": TestBasics,
"basics/http2": TestBasicsHTTP2,
"grpc": TestGRPC,
"grpc/split": TestGRPCSplit,
"headers/pre-split": TestPreSplitSetHeaders,
"headers/post-split": TestPostSplitSetHeaders,
"headers/probe": TestProbeHeaders,
"hosts/multiple": TestMultipleHosts,
"dispatch/path": TestPath,
"dispatch/percentage": TestPercentage,
"dispatch/path_and_percentage": TestPathAndPercentageSplit,
"dispatch/rule": TestRule,
"retry": TestRetry,
"timeout": TestTimeout,
"tls": TestIngressTLS,
"update": TestUpdate,
"visibility": TestVisibility,
"visibility/split": TestVisibilitySplit,
"visibility/path": TestVisibilityPath,
"ingressclass": TestIngressClass,
"websocket": TestWebsocket,
"websocket/split": TestWebsocketSplit,
// "basics": TestBasics,
// "basics/http2": TestBasicsHTTP2,
// "grpc": TestGRPC,
// "grpc/split": TestGRPCSplit,
// "headers/pre-split": TestPreSplitSetHeaders,
// "headers/post-split": TestPostSplitSetHeaders,
// "headers/probe": TestProbeHeaders,
// "hosts/multiple": TestMultipleHosts,
// "dispatch/path": TestPath,
// "dispatch/percentage": TestPercentage,
// "dispatch/path_and_percentage": TestPathAndPercentageSplit,
// "dispatch/rule": TestRule,
// "retry": TestRetry,
// "timeout": TestTimeout,
// "tls": TestIngressTLS,
"update": TestUpdate,
// "visibility": TestVisibility,
// "visibility/split": TestVisibilitySplit,
// "visibility/path": TestVisibilityPath,
// "ingressclass": TestIngressClass,
// "websocket": TestWebsocket,
// "websocket/split": TestWebsocketSplit,
}

var betaTests = map[string]func(t *testing.T){
// Add your conformance test for beta features
"host-rewrite": TestRewriteHost,
"headers/tags": TestTagHeaders,
// "host-rewrite": TestRewriteHost,
// "headers/tags": TestTagHeaders,
}

var alphaTests = map[string]func(t *testing.T){
// Add your conformance test for alpha features
"httpoption": TestHTTPOption,
// "httpoption": TestHTTPOption,
}

// RunConformance will run ingress conformance tests
Expand Down

0 comments on commit 416db0d

Please sign in to comment.