mirror of https://github.com/knative/client.git
Remove e2e skip flags after release (#1839)
This commit is contained in:
parent
cb9d30f9de
commit
db8514ce0e
|
|
@ -18,7 +18,6 @@
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"gotest.tools/v3/assert"
|
"gotest.tools/v3/assert"
|
||||||
|
|
@ -38,10 +37,6 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestEventtype(t *testing.T) {
|
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()
|
t.Parallel()
|
||||||
it, err := test.NewKnTest()
|
it, err := test.NewKnTest()
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ package e2e
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"os"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
|
@ -37,11 +36,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestServiceExport(t *testing.T) {
|
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()
|
t.Parallel()
|
||||||
it, err := test.NewKnTest()
|
it, err := test.NewKnTest()
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue