From b672617b266da2f3339f317b73f3972759a78adc Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Thu, 10 Apr 2025 00:28:25 +0200 Subject: [PATCH] chore: skip two flaky tests (#3364) --- tests/waku_discv5/test_waku_discv5.nim | 6 ++++-- tests/waku_rln_relay/test_wakunode_rln_relay.nim | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/waku_discv5/test_waku_discv5.nim b/tests/waku_discv5/test_waku_discv5.nim index 3d66136e8..edde80ab3 100644 --- a/tests/waku_discv5/test_waku_discv5.nim +++ b/tests/waku_discv5/test_waku_discv5.nim @@ -14,7 +14,7 @@ import import waku/[waku_core/topics, waku_enr, discovery/waku_discv5, waku_enr/capabilities], - ../testlib/[wakucore, testasync, assertions, futures, wakunode], + ../testlib/[wakucore, testasync, assertions, futures, wakunode, testutils], ../waku_enr/utils, ./utils as discv5_utils @@ -300,7 +300,9 @@ suite "Waku Discovery v5": # Cleanup await allFutures(node1.stop(), node2.stop(), node3.stop(), node4.stop()) - asyncTest "find random peers with instance predicate": + xasyncTest "find random peers with instance predicate": + ## This is skipped because is flaky and made CI randomly fail but is useful to run manually + ## Setup # Records let diff --git a/tests/waku_rln_relay/test_wakunode_rln_relay.nim b/tests/waku_rln_relay/test_wakunode_rln_relay.nim index 186343727..b07cca408 100644 --- a/tests/waku_rln_relay/test_wakunode_rln_relay.nim +++ b/tests/waku_rln_relay/test_wakunode_rln_relay.nim @@ -486,7 +486,9 @@ procSuite "WakuNode - RLN relay": await node2.stop() await node3.stop() - asyncTest "clearNullifierLog: should clear epochs > MaxEpochGap": + xasyncTest "clearNullifierLog: should clear epochs > MaxEpochGap": + ## This is skipped because is flaky and made CI randomly fail but is useful to run manually + # Given two nodes let contentTopic = ContentTopic("/waku/2/default-content/proto")