Fixes shell command syntax error
Corrects a syntax error in the shell command used to move Playwright reports, ensuring the command executes as intended.
This commit is contained in:
parent
ac92600b28
commit
998ccfb287
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ jobs:
|
|||
-e JIRA_CARD_NUMBER="$JIRA_CARD_NUMBER" \
|
||||
${{ parameters.dockerImageName }}:${{ parameters.imageTag }} \
|
||||
echo 'Moving Playwright reports out of subfolders...'; \
|
||||
find ./playwright-reports/ -mindepth 2 -type f -exec mv {} ./playwright-reports/ \; \
|
||||
find ./playwright-reports/ -mindepth 2 -type f -exec mv {} ./playwright-reports/ \; ; \
|
||||
echo 'Merging reports...'; \
|
||||
PLAYWRIGHT_JUNIT_OUTPUT_DIR='/app/test-results' PLAYWRIGHT_JUNIT_OUTPUT_NAME='junit_results.xml' npx --prefix $PLAYWRIGHT_PATH playwright merge-reports ./playwright-reports; \
|
||||
echo 'Contents of ortoni-report:' && ls ./ortoni-report; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue