Skip to content

Commit ff75bfc

Browse files
committed
chore: update test suite name when reporting failures
1 parent 3613113 commit ff75bfc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ jobs:
281281
failed=()
282282
[[ "${{ steps.unit.outcome }}" == "failure" ]] && failed+=("unit")
283283
[[ "${{ steps.integration.outcome }}" == "failure" ]] && failed+=("integration")
284-
[[ "${{ steps.e2e.outcome }}" == "failure" ]] && failed+=("e2e")
285-
[[ "${{ steps.long_running.outcome }}" == "failure" ]] && failed+=("long-running")
286-
[[ "${{ steps.very_long_running.outcome }}" == "failure" ]] && failed+=("very-long-running")
284+
[[ "${{ steps.e2e.outcome }}" == "failure" ]] && failed+=("e2e-regular")
285+
[[ "${{ steps.long_running.outcome }}" == "failure" ]] && failed+=("e2e-long-running")
286+
[[ "${{ steps.very_long_running.outcome }}" == "failure" ]] && failed+=("e2e-very-long-running")
287287
if [[ ${#failed[@]} -gt 0 ]]; then
288288
echo "The following test suites failed: ${failed[*]}"
289289
exit 1

0 commit comments

Comments
 (0)