Skip to content

Commit

Permalink
test(e2e): add junit test report (#455)
Browse files Browse the repository at this point in the history
test(e2e): add annotate_only: true

Signed-off-by: Daniel Villanueva <[email protected]>
  • Loading branch information
danivilla9 authored Dec 17, 2024
1 parent 40acd61 commit 788de2a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/e2e-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,17 @@ jobs:
PODMAN_DESKTOP_ARGS: ${{ github.workspace }}/podman-desktop
run: yarn test:e2e

- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
fail_on_failure: true
include_passed: true
detailed_summary: true
annotate_only: true
require_tests: true
report_paths: '**/*results.xml'

- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,17 @@ jobs:
PODMAN_DESKTOP_ARGS: ${{ github.workspace }}/podman-desktop
run: yarn test:e2e

- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
fail_on_failure: true
include_passed: true
detailed_summary: true
annotate_only: true
require_tests: true
report_paths: '**/*results.xml'

- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down

0 comments on commit 788de2a

Please sign in to comment.