From d977914f6bb1568dd34507e864c2d735e24aa2a8 Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Fri, 5 Jul 2024 11:00:33 +0100 Subject: [PATCH] chore_: skip waku tests as flaky (#5487) * chore_: skip `TestBasicWakuV2` as flaky * chore_: skip TestWakuV2Filter --- wakuv2/waku_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wakuv2/waku_test.go b/wakuv2/waku_test.go index cd18b0fc8..3eede21ef 100644 --- a/wakuv2/waku_test.go +++ b/wakuv2/waku_test.go @@ -128,6 +128,8 @@ func TestRestartDiscoveryV5(t *testing.T) { } func TestBasicWakuV2(t *testing.T) { + t.Skip("flaky test") + enrTreeAddress := testStoreENRBootstrap //"enrtree://AL65EKLJAUXKKPG43HVTML5EFFWEZ7L4LOKTLZCLJASG4DSESQZEC@prod.status.nodes.status.im" envEnrTreeAddress := os.Getenv("ENRTREE_ADDRESS") if envEnrTreeAddress != "" { @@ -324,6 +326,7 @@ func TestPeerExchange(t *testing.T) { } func TestWakuV2Filter(t *testing.T) { + t.Skip("flaky test") enrTreeAddress := testBootENRBootstrap envEnrTreeAddress := os.Getenv("ENRTREE_ADDRESS")