skip because of 1054 (#22)
This commit is contained in:
parent
776d2841fe
commit
26dd7144c7
|
@ -1,5 +1,5 @@
|
|||
import pytest
|
||||
from src.env_vars import NODE_2
|
||||
from src.env_vars import NODE_1, NODE_2
|
||||
from src.libs.custom_logger import get_custom_logger
|
||||
from src.test_data import INVALID_CONTENT_TOPICS, SAMPLE_INPUTS, VALID_PUBSUB_TOPICS
|
||||
from src.steps.filter import StepsFilter
|
||||
|
@ -27,6 +27,7 @@ class TestFilterSubscribeCreate(StepsFilter):
|
|||
failed_pubsub_topics.append(pubsub_topic)
|
||||
assert not failed_pubsub_topics, f"PubsubTopics failed: {failed_pubsub_topics}"
|
||||
|
||||
@pytest.mark.xfail("nwaku" in NODE_1 and "go-waku" in NODE_2, reason="Bug reported: https://github.com/waku-org/go-waku/issues/1054")
|
||||
def test_filter_subscribe_to_pubsub_topic_from_another_cluster_id(self):
|
||||
self.wait_for_subscriptions_on_main_nodes([self.test_content_topic], pubsub_topic=self.another_cluster_pubsub_topic)
|
||||
self.check_published_message_reaches_filter_peer(pubsub_topic=self.another_cluster_pubsub_topic)
|
||||
|
|
Loading…
Reference in New Issue