fix: skipp all RLN tests till registration works

This commit is contained in:
Roman 2024-06-21 16:58:31 +02:00
parent 71af7eb64d
commit ac74f57c09
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75
2 changed files with 2 additions and 3 deletions

View File

@ -50,7 +50,7 @@ jobs:
- name: Run tests
run: |
pytest tests/relay/test_rln.py
pytest -n 4 --dist loadgroup --reruns 2 --alluredir=allure-results
- name: Get allure history
if: always()

View File

@ -16,8 +16,8 @@ logger = get_custom_logger(__name__)
@pytest.mark.xdist_group(name="RLN serial tests")
@pytest.mark.usefixtures("register_main_rln_relay_nodes")
@pytest.mark.skipif("go-waku" in (NODE_1 + NODE_2), reason="Test works only with nwaku")
@pytest.mark.skip(reason="waiting to resolve registration https://github.com/waku-org/nwaku/issues/2837")
class TestRelayRLN(StepsRLN, StepsRelay):
@pytest.mark.timeout(600)
def test_valid_payloads_at_slow_rate(self):
self.setup_main_rln_relay_nodes()
self.subscribe_main_relay_nodes()
@ -33,7 +33,6 @@ class TestRelayRLN(StepsRLN, StepsRelay):
delay(1)
assert not failed_payloads, f"Payloads failed: {failed_payloads}"
@pytest.mark.timeout(600)
def test_valid_payloads_at_spam_rate(self):
self.setup_main_rln_relay_nodes()
self.subscribe_main_relay_nodes()