From f3211dd2f5f2e8e901ba5ca68656367b40ac5a60 Mon Sep 17 00:00:00 2001 From: Saroj <43822041+sarojsarab@users.noreply.github.com> Date: Tue, 28 Mar 2023 09:51:55 +0530 Subject: [PATCH] ci: Added dub points for failed-spec comment (#21810) ## Description - Added dub points for failed-spec comment ## Type of change - YML File changes ## How Has This Been Tested? - Manual ## Checklist: ### QA activity: - [ ] Test plan has been approved by relevant developers - [ ] Test plan has been peer reviewed by QA - [ ] Cypress test cases have been added and approved by either SDET or manual QA - [ ] Organized project review call with relevant stakeholders after Round 1/2 of QA - [ ] Added Test Plan Approved label after reveiwing all Cypress test --- .github/workflows/integration-tests-command.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index 24952469ac..49260075a8 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -127,8 +127,9 @@ jobs: - name: "combine all specs for CI" if: needs.ci-test.result != 'success' run: | - rm -f ~/combined_failed_spec_ci - cat ~/failed_spec_ci/failed_spec_ci* >> ~/combined_failed_spec_ci + echo "Debugging: failed specs in ~/failed_spec_ci/failed_spec_ci*" + cat ~/failed_spec_ci/failed_spec_ci* + cat ~/failed_spec_ci/failed_spec_ci* | sort -u >> ~/combined_failed_spec_ci # Force save the CI failed spec list into a cache - name: Store the combined run result for CI