Skip to content

Commit bd201fa

Browse files
fix: correct report summary workflow filename in smoke tests
1 parent ae3f6a8 commit bd201fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/report_summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
echo "| Test | Status |"
9292
echo "| ---- | ------ |"
9393
if jq -e '.tests' "$REPORT_FILE" >/dev/null 2>&1; then
94-
jq -r '.tests[] | "\(.nodeid)\t\(.outcome // "passed")"' "$REPORT_FILE" | \
94+
jq -r '.tests[] | "\(.nodeid)\t\(.outcome // \"passed\")"' "$REPORT_FILE" | \
9595
while IFS=$'\t' read -r NODEID OUTCOME; do
9696
case "${OUTCOME}" in
9797
passed) ICON="✅ Passed" ;;

.github/workflows/smoke_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,6 @@ jobs:
181181
182182
call-report-summary:
183183
needs: validation-run-tests
184-
uses: ./.github/workflows/report-summary.yml
184+
uses: ./.github/workflows/report_summary.yml
185185
with:
186186
artifact-name: smoke-tests-report-json

0 commit comments

Comments
 (0)