ignore the node version test (#196)

* ignore the node version test

* xfail the metrics test
This commit is contained in:
AYAHASSAN287 2026-07-08 15:37:28 +03:00 committed by GitHub
parent a7fda4471e
commit 21e09f1acb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ from src.steps.store import StepsStore
class TestMetrics(StepsRelay, StepsMetrics, StepsFilter, StepsLightPush, StepsStore):
@pytest.mark.xfail(reason="these metrics are new from libp2p and has no values yet")
def test_metrics_initial_value(self):
node = WakuNode(DEFAULT_NWAKU, f"node1_{self.test_id}")
node.start(relay="true", filter="true", store="true", lightpush="true")

View File

@ -21,6 +21,7 @@ class TestDebugFlags(StepsFilter, StepsStore, StepsRelay, StepsLightPush):
def nodes(self):
self.node1 = WakuNode(NODE_2, f"node1_{self.test_id}")
@pytest.mark.skip(reason="Volatile: asserts a specific node version range that changes frequently across releases")
def test_verify_node_version2(self):
self.node1.start(relay="true")
node1_version = self.node1.get_version()