Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable wan federation tests on kind because of flakiness #1346

Merged
merged 1 commit into from
Jul 18, 2022
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