From 8a25cf498736baa5c01fe08d76a8279b576b2f0f Mon Sep 17 00:00:00 2001 From: Stephan Behnke Date: Wed, 2 Oct 2024 18:22:49 -0700 Subject: [PATCH] Publish test results --- .github/workflows/run-tests.yml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6c26bf088c2..70852d8ffd4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -82,6 +82,12 @@ jobs: timeout-minutes: 15 run: make unit-test-coverage + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() + with: + report_paths: './.testoutput/*.junit.xml' + - name: Upload test results if: ${{ !cancelled() }} run: make upload-test-results @@ -119,6 +125,12 @@ jobs: timeout-minutes: 15 run: make integration-test-coverage + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() + with: + report_paths: './.testoutput/*.junit.xml' + - name: Upload test results if: ${{ !cancelled() }} run: make upload-test-results @@ -194,7 +206,11 @@ jobs: timeout-minutes: 30 # make sure this is larger than the test timeout in the Makefile run: make functional-test-coverage - - name: Upload test results + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() + with: + report_paths: './.testoutput/*.junit.xml - name: Upload test results if: ${{ !cancelled() }} run: make upload-test-results @@ -255,7 +271,11 @@ jobs: timeout-minutes: 15 run: make functional-test-xdc-coverage - - name: Upload test results + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() + with: + report_paths: './.testoutput/*.junit.xml - name: Upload test results if: ${{ !cancelled() }} run: make upload-test-results