diff --git a/tests/metrics/test_metrics.py b/tests/metrics/test_metrics.py index 730e2d04..ef4e4b61 100644 --- a/tests/metrics/test_metrics.py +++ b/tests/metrics/test_metrics.py @@ -10,7 +10,6 @@ from src.steps.store import StepsStore class TestMetrics(StepsRelay, StepsMetrics, StepsFilter, StepsLightPush, StepsStore): - @pytest.mark.skip 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") diff --git a/tests/relay/test_rln.py b/tests/relay/test_rln.py index 6942f2aa..5be2487b 100644 --- a/tests/relay/test_rln.py +++ b/tests/relay/test_rln.py @@ -14,7 +14,6 @@ logger = get_custom_logger(__name__) @pytest.mark.xdist_group(name="RLN serial tests") -@pytest.mark.rln @pytest.mark.skipif("go-waku" in (NODE_1 + NODE_2), reason="Test works only with nwaku") class TestRelayRLN(StepsRLN, StepsRelay): SAMPLE_INPUTS_RLN = SAMPLE_INPUTS + SAMPLE_INPUTS + SAMPLE_INPUTS @@ -40,7 +39,6 @@ class TestRelayRLN(StepsRLN, StepsRelay): except Exception as e: assert "RLN validation failed" or "NonceLimitReached" in str(e) - @pytest.mark.skipif("nwaku" in (NODE_1 + NODE_2), reason="Test works only with nwaku") def test_valid_payloads_at_slow_rate(self, pytestconfig): message_limit = 20 self.register_rln_relay_nodes(0, pytestconfig.cache.get("keystore-prefixes", [])) @@ -61,7 +59,6 @@ class TestRelayRLN(StepsRLN, StepsRelay): if i == message_limit - 1: break - @pytest.mark.skipif("nwaku" in (NODE_1 + NODE_2), reason="Test works only with nwaku") def test_valid_payloads_at_spam_rate(self, pytestconfig): message_limit = 20 epoch_sec = 600 @@ -81,7 +78,6 @@ class TestRelayRLN(StepsRLN, StepsRelay): except Exception as e: assert "RLN validation failed" or "NonceLimitReached" in str(e) - @pytest.mark.skipif("nwaku" in (NODE_1 + NODE_2), reason="Test works only with nwaku") def test_valid_payload_at_variable_rate(self, pytestconfig): self.register_rln_relay_nodes(0, pytestconfig.cache.get("keystore-prefixes", [])) self.setup_main_rln_relay_nodes(rln_relay_user_message_limit=1, rln_relay_epoch_sec=1)