Skip to content

Commit a11f8f1

Browse files
committed
fix case in TE test summary
1 parent 0128990 commit a11f8f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/_test_te.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -255,23 +255,23 @@ jobs:
255255
source .github/workflows/scripts/to_json.sh
256256
257257
EXIT_STATUSES="output/*-status.json"
258-
badge_label='TE Multi Gpu tests'
258+
badge_label='TE Multi GPU tests'
259259
passed_tests=$(jq -r '. | select ((.state == "COMPLETED") and (.exitcode == "0")) | .state' $EXIT_STATUSES | wc -l)
260260
failed_tests=$(jq -r '. | select ((.state != "COMPLETED") or (.exitcode != "0")) | .state' $EXIT_STATUSES | wc -l)
261261
total_tests=$(ls $EXIT_STATUSES | wc -l)
262262
263263
if [[ ${failed_tests} > 0 ]] || [[ ${total_tests} == 0 ]]; then
264264
badge_message='error'
265265
badge_color=red
266-
summary='TE multi Gpu tests did not complete due to errors.'
266+
summary='TE multi GPU tests did not complete due to errors.'
267267
else
268268
badge_message="${passed_tests}/${total_tests} passed"
269269
if [[ ${failed_tests} == 0 ]]; then
270270
badge_color=brightgreen
271271
else
272272
badge_color=yellow
273273
fi
274-
summary="TE multi Gpu tests : $badge_message"
274+
summary="TE multi GPU tests : $badge_message"
275275
fi
276276
277277
to_json \

0 commit comments

Comments
 (0)