Skip to content

Commit 4048a3e

Browse files
authored
ci: don't fail when a single test fails
1 parent 4f7d80e commit 4048a3e

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

.github/workflows/wc-integration-test-docker.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ jobs:
5454
persist-credentials: false
5555
- run: echo "arch=$(echo "${RUNNER_ARCH}" | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_OUTPUT"
5656
id: runner-arch
57-
- run: |
58-
set -Eeuo pipefail
59-
bats --formatter junit "${TEST_FILE}" | tee "test-report-${IMAGE_BASENAME}-${RUNNER_ARCH}.xml"
57+
- run: bats --formatter junit "${TEST_FILE}" | tee "test-report-${IMAGE_BASENAME}-${RUNNER_ARCH}.xml"
6058
env:
6159
IMAGE_BASENAME: ${{ inputs.image-basename }}
6260
TEST_FILE: ${{ inputs.test-file }}

.github/workflows/wc-integration-test-podman.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ jobs:
6868
id: runner-arch
6969
- name: Run integration tests using Podman
7070
run: |
71-
set -Eeuo pipefail
72-
7371
podman run --rm \
7472
--network=host \
7573
-v "${WORKSPACE}:${WORKSPACE}" \

0 commit comments

Comments
 (0)