Skip to content

Commit

Permalink
e2e: disable unstable tests (#3306)
Browse files Browse the repository at this point in the history
* e2e: disable unstable tests

Signed-off-by: zirain <zirain2009@gmail.com>

* ref issue

Signed-off-by: zirain <zirain2009@gmail.com>

* disable EnvoyShutdownTest

Signed-off-by: zirain <zirain2009@gmail.com>

---------

Signed-off-by: zirain <zirain2009@gmail.com>
  • Loading branch information
zirain authored Apr 30, 2024
1 parent 892d2e3 commit 9a33089
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ func TestE2E(t *testing.T) {
CleanupBaseResources: *flags.CleanupBaseResources,
FS: &Manifests,
RunTest: *flags.RunTest,
SkipTests: []string{
tests.ClientTimeoutTest.ShortName, // https://github.com/envoyproxy/gateway/issues/2720
},
})

cSuite.Setup(t)
Expand Down
6 changes: 4 additions & 2 deletions test/e2e/merge_gateways/merge_gateways_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,16 @@ func TestMergeGateways(t *testing.T) {
Debug: *flags.ShowDebug,
CleanupBaseResources: *flags.CleanupBaseResources,
RunTest: *flags.RunTest,
SkipTests: []string{
tests.MergeGatewaysTest.ShortName, // https://github.com/envoyproxy/gateway/issues/3290
},
})

// Setting up the necessary arguments for the suite instead of calling Suite.Setup method again,
// since this test suite reuse the base resources of previous test suite.
cSuite.Applier.FS = e2e.Manifests
cSuite.Applier.GatewayClass = *flags.GatewayClassName
cSuite.ControllerName = kubernetes.GWCMustHaveAcceptedConditionTrue(t,
cSuite.Client, cSuite.TimeoutConfig, cSuite.GatewayClassName)
cSuite.ControllerName = kubernetes.GWCMustHaveAcceptedConditionTrue(t, cSuite.Client, cSuite.TimeoutConfig, cSuite.GatewayClassName)

t.Logf("Running %d MergeGateways tests", len(tests.MergeGatewaysTests))
cSuite.Run(t, tests.MergeGatewaysTests)
Expand Down
3 changes: 3 additions & 0 deletions test/e2e/upgrade/eg_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ func TestEGUpgrade(t *testing.T) {
CleanupBaseResources: *flags.CleanupBaseResources,
FS: &e2e.Manifests,
RunTest: *flags.RunTest,
SkipTests: []string{
tests.EnvoyShutdownTest.ShortName, // https://github.com/envoyproxy/gateway/issues/3262
},
})

cSuite.Setup(t)
Expand Down

0 comments on commit 9a33089

Please sign in to comment.