Skip to content

Commit

Permalink
Remove e2e skip flags after release (#1839)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsimansk authored Aug 2, 2023
1 parent cb9d30f commit db8514c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
5 changes: 0 additions & 5 deletions test/e2e/eventtype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
package e2e

import (
"os"
"testing"

"gotest.tools/v3/assert"
Expand All @@ -38,10 +37,6 @@ const (
)

func TestEventtype(t *testing.T) {
//FIXME: enable after Eventing v1.11 is out
if os.Getenv("LATEST_RELEASE") == "true" {
t.Skip("The tests are skipped on Eventing v1.10")
}
t.Parallel()
it, err := test.NewKnTest()
assert.NilError(t, err)
Expand Down
6 changes: 0 additions & 6 deletions test/e2e/service_export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package e2e

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

Expand All @@ -37,11 +36,6 @@ import (
)

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")
}
t.Parallel()
it, err := test.NewKnTest()
assert.NilError(t, err)
Expand Down

0 comments on commit db8514c

Please sign in to comment.