Skip to content

Commit

Permalink
fix(e2e): Skip service export test (#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsimansk authored Oct 7, 2020
1 parent b13cd70 commit 60f2c2c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/e2e/service_export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ package e2e

import (
"encoding/json"
"os"
"strings"
"testing"

"gotest.tools/assert"
Expand All @@ -47,9 +45,9 @@ type podSpecOption func(*corev1.PodSpec)
func TestServiceExport(t *testing.T) {
//FIXME: enable once 0.19 is available
// see: https://github.com/knative/serving/pull/9685
if strings.HasPrefix(os.Getenv("KNATIVE_SERVING_VERSION"), "0.18") {
t.Skip("The test is skipped on Serving version 0.18")
}
// Skip unconditionally to enable 0.18 release
t.Skip("The test is skipped on Serving version 0.18")

t.Parallel()
it, err := test.NewKnTest()
assert.NilError(t, err)
Expand Down

0 comments on commit 60f2c2c

Please sign in to comment.