Skip to content

Commit

Permalink
fix(ci): another regression with github actions (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
bouda1 authored Nov 15, 2023
1 parent 893f542 commit 237088f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/robot-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
shell: bash

- name: Move reports
if: ${{ !cancelled() }}
if: ${{ failure() }}
run: |
mkdir reports
FILE_PREFIX=`echo "${{ matrix.feature }}" | sed -e "s#/#__#g"`
Expand All @@ -70,7 +70,7 @@ jobs:
fi
- name: Upload Test Results
if: ${{ !cancelled() }}
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: robot-test-reports
Expand All @@ -79,7 +79,7 @@ jobs:

robot-test-report:
needs: [robot-test-run]
if: ${{ !cancelled() }}
if: ${{ failure() }}
runs-on: ubuntu-22.04

steps:
Expand Down

1 comment on commit 237088f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass %
13 1 0 14 92.86

Passed Tests

Name ⏱️ Duration Suite
BETAG1 9.536 s Tags
BETAG2 10.435 s Tags
BEUTAG1 10.245 s Tags
BEUTAG2 20.325 s Tags
BEUTAG3 11.268 s Tags
BEUTAG4 16.299 s Tags
BEUTAG5 11.292 s Tags
BEUTAG6 11.311 s Tags
BEUTAG8 41.641 s Tags
BEUTAG9 21.284 s Tags
BEUTAG10 70.345 s Tags
BEUTAG11 80.386 s Tags
BEUTAG12 11.261 s Tags

Failed Tests

Name Message ⏱️ Duration Suite
BEUTAG7 Second step: Service (26, 507) should have servicegroup tags 3 and 5 109.736 s Tags

Please sign in to comment.