Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwan-samarasinghe committed Feb 19, 2025
1 parent fb7b74b commit 7534e1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/copilot_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ jobs:
printf "| %-60s | %-19s | %-19s |\n" "File Name" "Tests Count" "Status"
echo -e "----------------------------------------------------------------------------------------------------------------------------"
total_tests=0
total_features_tests=0
while read file; do
Expand All @@ -336,13 +337,16 @@ jobs:
tests_in_file=$((tests_in_file + 0))
total_tests=$((total_tests + tests_in_file))
total_features_tests=$((total_features_tests + 1))
printf "| %-60s | %-19s | %-19s |\n" "$file_name" "$tests_in_file" "$failures"
printf "| %-60s | %-19s | %-19s |\n" "$file_name" "$tests_in_file" "$status"
done < <(find "result" -name '*.xml')
echo -e "----------------------------------------------------------------------------------------------------------------------------"
echo "Total Tests: $total_tests"
echo "Total Features: $total_features_tests"
echo -e "----------------------------------------------------------------------------------------------------------------------------"
dev_deploy:
needs: [ setup, docker-designer-build, docker-runner-build ]
Expand Down

0 comments on commit 7534e1f

Please sign in to comment.