diff --git a/.github/workflows/copilot_deploy.yml b/.github/workflows/copilot_deploy.yml index b64d741..fe45e59 100644 --- a/.github/workflows/copilot_deploy.yml +++ b/.github/workflows/copilot_deploy.yml @@ -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 @@ -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 ]