Skip to content

Commit

Permalink
fix: skipp all RLN tests till registration works
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzac committed Jun 21, 2024
1 parent 71af7eb commit ac74f57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
3 changes: 1 addition & 2 deletions tests/relay/test_rln.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
@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()
Expand All @@ -33,7 +33,6 @@ def test_valid_payloads_at_slow_rate(self):
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()
Expand Down

0 comments on commit ac74f57

Please sign in to comment.