We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3f6a8 commit bd201faCopy full SHA for bd201fa
.github/workflows/report_summary.yml
@@ -91,7 +91,7 @@ jobs:
91
echo "| Test | Status |"
92
echo "| ---- | ------ |"
93
if jq -e '.tests' "$REPORT_FILE" >/dev/null 2>&1; then
94
- jq -r '.tests[] | "\(.nodeid)\t\(.outcome // "passed")"' "$REPORT_FILE" | \
+ jq -r '.tests[] | "\(.nodeid)\t\(.outcome // \"passed\")"' "$REPORT_FILE" | \
95
while IFS=$'\t' read -r NODEID OUTCOME; do
96
case "${OUTCOME}" in
97
passed) ICON="✅ Passed" ;;
.github/workflows/smoke_tests.yml
@@ -181,6 +181,6 @@ jobs:
181
182
call-report-summary:
183
needs: validation-run-tests
184
- uses: ./.github/workflows/report-summary.yml
+ uses: ./.github/workflows/report_summary.yml
185
with:
186
artifact-name: smoke-tests-report-json
0 commit comments