From 758ab0ba8ce28ee88e87bbb09e045ff68233dc5a Mon Sep 17 00:00:00 2001 From: Chase King Date: Wed, 26 Feb 2025 10:19:56 -0500 Subject: [PATCH] Attempt #32 --- azure-pipelines-automated-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines-automated-testing.yml b/azure-pipelines-automated-testing.yml index 3ea70a6a..3424cc27 100644 --- a/azure-pipelines-automated-testing.yml +++ b/azure-pipelines-automated-testing.yml @@ -159,10 +159,10 @@ stages: $(dockerImageName):$(imageTag) \ bash -c "for dir in ./playwright-reports/*/; do if [ -d "$dir" ]; then - mv "$dir"* ./playwright-reports/ && + mv "$dir"* . && rmdir "$dir" fi - done && pwd && ls && ls ./playwright-reports/; npx playwright merge-reports --reporter=ortoni-report,junit ./playwright-reports && ls && ./devops/scripts/jira_writeback.sh add_comment \"$(Build.SourceBranchName)\" \"AUTOMATED TEST RUN: $(date)\" \"./ortoni-report/index.html\"") + done; pwd && ls && ls ./playwright-reports/; npx playwright merge-reports --reporter=ortoni-report,junit ./playwright-reports && ls && ./devops/scripts/jira_writeback.sh add_comment \"$(Build.SourceBranchName)\" \"AUTOMATED TEST RUN: $(date)\" \"./ortoni-report/index.html\"") # Start container and stream logs echo "Starting merge" docker start -a $container_id