Attempt #33
This commit is contained in:
parent
758ab0ba8c
commit
81eedbd61e
1 changed files with 2 additions and 2 deletions
|
|
@ -157,9 +157,9 @@ stages:
|
||||||
-e JIRA_USERNAME=$(JIRA_USERNAME) \
|
-e JIRA_USERNAME=$(JIRA_USERNAME) \
|
||||||
-e JIRA_API_KEY=$(JIRA_API_KEY) \
|
-e JIRA_API_KEY=$(JIRA_API_KEY) \
|
||||||
$(dockerImageName):$(imageTag) \
|
$(dockerImageName):$(imageTag) \
|
||||||
bash -c "for dir in ./playwright-reports/*/; do
|
bash -c "for dir in /app/playwright-reports/*/; do
|
||||||
if [ -d "$dir" ]; then
|
if [ -d "$dir" ]; then
|
||||||
mv "$dir"* . &&
|
mv "$dir"* /app/playwright-reports &&
|
||||||
rmdir "$dir"
|
rmdir "$dir"
|
||||||
fi
|
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\"")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue