Skip to content

Commit c08bc0b

Browse files
committed
skip conformance test
1 parent bfb68c9 commit c08bc0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/conformance/conformance_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
var skippedTestsForSSL = []string{
2222
// Reason: https://github.com/kubernetes-sigs/gateway-api/blob/5c5fc388829d24e8071071b01e8313ada8f15d9f/conformance/utils/suite/suite.go#L358. SAN includes '*'
2323
tests.HTTPRouteHTTPSListener.ShortName,
24+
tests.HTTPRouteRedirectPortAndScheme.ShortName
2425
}
2526
var skippedTestsForTraditionalRoutes = []string{
2627
// TODO: Support ReferenceGrant resource
@@ -72,7 +73,8 @@ func TestGatewayAPIConformance(t *testing.T) {
7273
opts.CleanupBaseResources = true
7374
opts.GatewayClassName = gatewayClassName
7475
opts.SupportedFeatures = sets.New(gatewaySupportedFeatures...)
75-
opts.SkipTests = append(skippedTestsForTraditionalRoutes, skippedTestsForSSL...)
76+
opts.SkipTests = skippedTestsForSSL
77+
opts.SkipTests = append(opts.SkipTests, skippedTestsForTraditionalRoutes...)
7678
opts.Implementation = conformancev1.Implementation{
7779
Organization: "API7",
7880
Project: "api7-ingress-controller",

0 commit comments

Comments
 (0)