From 9f4a92643841f5c6f9dd0e95dd476619b50c2152 Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Fri, 29 Nov 2024 10:31:49 +0200 Subject: [PATCH] Update ci-it.yml to ensure it doesn't fail on absent failsafe files Update ci-it.yml to ensure it doesn't fail on absent failsafe files Ensure when failsafe plugin isn't used it shouldn't cause a failure --- .github/workflows/ci-it.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml index 5b6da122..ed9a55bd 100644 --- a/.github/workflows/ci-it.yml +++ b/.github/workflows/ci-it.yml @@ -71,6 +71,7 @@ jobs: name: Unit Tests path: '**/surefire-reports/*.xml' reporter: java-junit + fail-on-empty: 'false' - name: Integrtation Test Report uses: dorny/test-reporter@v1 if: ${{ success() || failure() }} @@ -78,6 +79,7 @@ jobs: name: Integration Tests path: '**/failsafe-reports/*.xml' reporter: java-junit + fail-on-empty: 'false' - name: 'Upload: Error logs' if: ${{ failure() }} uses: actions/upload-artifact@v3