From da655b47fb1c4fcf005620dc925bf8162cc147a5 Mon Sep 17 00:00:00 2001 From: Aya Hassan Date: Tue, 5 May 2026 10:26:42 +0200 Subject: [PATCH] Modify the yml to continue on error --- .github/workflows/pr_tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml index a2eda94c3..1ac65b970 100644 --- a/.github/workflows/pr_tests.yml +++ b/.github/workflows/pr_tests.yml @@ -150,34 +150,34 @@ jobs: path: vendor/logos-delivery-python-bindings/lib/ - name: Run wrapper tests - basic life cycle + continue-on-error: true env: PYTHONPATH: ${{ github.workspace }}/vendor/logos-delivery-python-bindings/waku run: | pytest tests/wrappers_tests/test_basic_life_cycle.py \ -m "not docker_required" \ --reruns 2 \ - --junit-xml=wrapper-results-basic.xml || true - continue-on-error: true + --junit-xml=wrapper-results-basic.xml - name: Run wrapper tests - send e2e part 1 + continue-on-error: true env: PYTHONPATH: ${{ github.workspace }}/vendor/logos-delivery-python-bindings/waku run: | pytest tests/wrappers_tests/test_send_e2e_part1.py \ -m "not docker_required" \ --reruns 2 \ - --junit-xml=wrapper-results-send-part1.xml - continue-on-error: true + --junit-xml=wrapper-results-send-part1.xml - name: Run wrapper tests - send e2e part 2 + continue-on-error: true env: PYTHONPATH: ${{ github.workspace }}/vendor/logos-delivery-python-bindings/waku run: | pytest tests/wrappers_tests/test_send_e2e_part2.py \ -m "not docker_required" \ --reruns 2 \ - --junit-xml=wrapper-results-send-part2.xml - continue-on-error: true + --junit-xml=wrapper-results-send-part2.xml - name: Test Report if: always()