Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions acceptance/tests/mesh-gateway/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ func TestMain(m *testing.M) {

if suite.Config().EnableMultiCluster {
os.Exit(suite.Run())
} else if suite.Config().UseKind {
fmt.Println("Skipping mesh gateway tests because they are currently flaky on kind")
os.Exit(0)
} else {
fmt.Println("Skipping mesh gateway tests because -enable-multi-cluster is not set")
os.Exit(0)
Expand Down
3 changes: 3 additions & 0 deletions acceptance/tests/vault/vault_wan_fed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ import (
// in the secondary that will treat the Vault server in the primary as an external server.
func TestVault_WANFederationViaGateways(t *testing.T) {
cfg := suite.Config()
if cfg.UseKind {
t.Skipf("Skipping this test because it's currently flaky on kind")
}
if !cfg.EnableMultiCluster {
t.Skipf("skipping this test because -enable-multi-cluster is not set")
}
Expand Down