From f5ff548e64afc9e8e8f7819a023b24652701895a Mon Sep 17 00:00:00 2001 From: AYAHASSAN287 <49167455+AYAHASSAN287@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:30:03 +0200 Subject: [PATCH] Ignore test_store_filter_interaction_with_six_nodes when NODE_2 = go-waku (#86) --- tests/e2e/test_e2e.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/test_e2e.py b/tests/e2e/test_e2e.py index c301e0e6dd..270935b122 100644 --- a/tests/e2e/test_e2e.py +++ b/tests/e2e/test_e2e.py @@ -178,6 +178,7 @@ def test_chain_of_relay_nodes(self): # self.node1 relays and we check that self.node10 receives the message self.check_published_message_reaches_relay_peer(sender=self.node1, peer_list=[self.node10], message_propagation_delay=1) + @pytest.mark.skipif("go-waku" in NODE_2, reason="Test works only with nwaku") def test_store_filter_interaction_with_six_nodes(self): logger.debug("Create 6 nodes") self.node4 = WakuNode(NODE_2, f"node3_{self.test_id}")