Commit a11f8f1 1 parent 0128990 commit a11f8f1 Copy full SHA for a11f8f1
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -255,23 +255,23 @@ jobs:
255
255
source .github/workflows/scripts/to_json.sh
256
256
257
257
EXIT_STATUSES="output/*-status.json"
258
- badge_label='TE Multi Gpu tests'
258
+ badge_label='TE Multi GPU tests'
259
259
passed_tests=$(jq -r '. | select ((.state == "COMPLETED") and (.exitcode == "0")) | .state' $EXIT_STATUSES | wc -l)
260
260
failed_tests=$(jq -r '. | select ((.state != "COMPLETED") or (.exitcode != "0")) | .state' $EXIT_STATUSES | wc -l)
261
261
total_tests=$(ls $EXIT_STATUSES | wc -l)
262
262
263
263
if [[ ${failed_tests} > 0 ]] || [[ ${total_tests} == 0 ]]; then
264
264
badge_message='error'
265
265
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.'
267
267
else
268
268
badge_message="${passed_tests}/${total_tests} passed"
269
269
if [[ ${failed_tests} == 0 ]]; then
270
270
badge_color=brightgreen
271
271
else
272
272
badge_color=yellow
273
273
fi
274
- summary="TE multi Gpu tests : $badge_message"
274
+ summary="TE multi GPU tests : $badge_message"
275
275
fi
276
276
277
277
to_json \
You can’t perform that action at this time.
0 commit comments