Remove e2e skip flags after release (#1839)

This commit is contained in:
David Simansky 2023-08-02 16:21:49 +02:00 committed by GitHub
parent cb9d30f9de
commit db8514ce0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 11 deletions

View File

@ -18,7 +18,6 @@
package e2e
import (
"os"
"testing"
"gotest.tools/v3/assert"
@ -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)

View File

@ -19,7 +19,6 @@ package e2e
import (
"encoding/json"
"os"
"strings"
"testing"
@ -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)