trigger CI job

This commit is contained in:
Aya Hassan 2026-06-03 12:48:55 +02:00
parent 136218785d
commit 753b3c1816
2 changed files with 10 additions and 1 deletions

View File

@ -199,6 +199,16 @@ jobs:
--reruns 2 \
--junit-xml=wrapper-results-send-errors-and-concurrency.xml
- name: Run wrapper tests - corner cases
continue-on-error: true
env:
PYTHONPATH: ${{ github.workspace }}/vendor/logos-delivery-python-bindings/waku
run: |
pytest tests/wrappers_tests/test_wrapper_corner_cases.py \
-m "not docker_required" \
--reruns 2 \
--junit-xml=wrapper-results-corner-cases.xml
- name: Test Report
if: always()
uses: dorny/test-reporter@95058abb17504553158e70e2c058fe1fda4392c2

View File

@ -35,7 +35,6 @@ class TestWrapperAutoPortAllocation(StepsCommon):
"""
def test_auto_port_starts_node_with_tcp_and_discv5_zero(self):
# restPort keeps its free_port() default from build_node_config.
config = build_node_config(tcpPort=0, discv5UdpPort=0)
result = WrapperManager.create_and_start(config=config)