This commit is contained in:
Chase King 2025-02-26 10:43:42 -05:00
parent 758ab0ba8c
commit 81eedbd61e

View file

@ -157,9 +157,9 @@ stages:
-e JIRA_USERNAME=$(JIRA_USERNAME) \
-e JIRA_API_KEY=$(JIRA_API_KEY) \
$(dockerImageName):$(imageTag) \
bash -c "for dir in ./playwright-reports/*/; do
bash -c "for dir in /app/playwright-reports/*/; do
if [ -d "$dir" ]; then
mv "$dir"* . &&
mv "$dir"* /app/playwright-reports &&
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\"")