Skip to content

Commit

Permalink
enable cluster local tls tests for contour
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso committed Jul 8, 2024
1 parent a923915 commit 9a0439c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ func TestClusterLocalDomainTLSClusterLocalVisibility(t *testing.T) {
t.Skip("Alpha features not enabled")
}

if !(strings.Contains(test.ServingFlags.IngressClass, "kourier")) {
t.Skip("Skip this test for non-kourier ingress.")
if !strings.Contains(test.ServingFlags.IngressClass, "kourier") ||
strings.Contains(test.ServingFlags.IngressClass, "contour") {
t.Skip("Skip this test for non-kourier/contour ingress.")
}

t.Parallel()
Expand Down

0 comments on commit 9a0439c

Please sign in to comment.