Skip to content

Commit

Permalink
Revert "fix: re-enable knative tests for all cluster types"
Browse files Browse the repository at this point in the history
This reverts commit a57f3b4.
  • Loading branch information
shaneutt committed Aug 3, 2021
1 parent c20adb1 commit 6f21900
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/integration/knative_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"time"

"github.com/kong/kubernetes-testing-framework/pkg/clusters"
"github.com/kong/kubernetes-testing-framework/pkg/clusters/types/kind"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
corev1 "k8s.io/api/core/v1"
Expand All @@ -40,6 +41,10 @@ const (
)

func TestKnativeIngress(t *testing.T) {
if env.Cluster().Type() != kind.KindClusterType {
t.Skip("TODO: knative tests are only supported on KIND based environments right now")
}

cluster := env.Cluster()
proxy := proxyURL.Hostname()
assert.NotEmpty(t, proxy)
Expand Down

0 comments on commit 6f21900

Please sign in to comment.