From 7534e1f9dce10bbc27db3a21cbf0a383946b1294 Mon Sep 17 00:00:00 2001 From: Nuwan Samarasinghe Date: Wed, 19 Feb 2025 10:48:02 +0000 Subject: [PATCH] test fix --- .github/workflows/copilot_deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 ]