From f2476176e57c455fd346ca3867dae851cad575c2 Mon Sep 17 00:00:00 2001 From: Robert Segal Date: Sat, 28 Feb 2026 09:17:45 -0700 Subject: [PATCH] Update workflow e2e test step to continue on failure to not block actions --- .github/workflows/push-release-branch.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/push-release-branch.yml b/.github/workflows/push-release-branch.yml index 5508e37..3efa058 100644 --- a/.github/workflows/push-release-branch.yml +++ b/.github/workflows/push-release-branch.yml @@ -39,6 +39,7 @@ jobs: run: make check-all - name: "Run E2E test" + continue-on-error: true run: make e2e args="--reportportal --rp-launch=$RP_LAUNCH --rp-api-key=$RP_API_KEY --rp-endpoint=$RP_ENDPOINT -o rp_launch_attributes=\"$RP_LAUNCH_ATTR\"" env: RP_LAUNCH: mpt-api-client-e2e diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63bcff7..3b7fa54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,7 @@ jobs: MPT_API_TOKEN_VENDOR: ${{ secrets.MPT_API_TOKEN_VENDOR }} - name: "Run E2E test" + continue-on-error: true run: make e2e args="--reportportal --rp-launch=$RP_LAUNCH --rp-api-key=$RP_API_KEY --rp-endpoint=$RP_ENDPOINT -o rp_launch_attributes=\"$RP_LAUNCH_ATTR\"" env: RP_LAUNCH: mpt-api-client-e2e