From cf182650570abfda2378665cbdb6af9d32aa245e Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Fri, 11 Jul 2025 10:03:49 -0400 Subject: [PATCH] Removes debug logging in Playwright tests Removes temporary debugging statements from the Playwright test workflow. These logs were used to diagnose issues with report merging but are no longer needed, reducing noise in the CI output. --- temp/playwright-test.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/temp/playwright-test.yml b/temp/playwright-test.yml index 8cae0dc1f..6c86052df 100644 --- a/temp/playwright-test.yml +++ b/temp/playwright-test.yml @@ -257,15 +257,6 @@ jobs: 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 --config=$PLAYWRIGHT_PATH/playwright.config.ts ./playwright-reports - - echo 'Contents of ortoni-report:' && ls ./ortoni-report - echo 'Current dir: ' && pwd - echo 'Contents of current dir: ' && ls - echo 'Contents of /app/test-results' && ls /app/test-results - echo 'Contents of $PLAYWRIGHT_PATH' && ls $PLAYWRIGHT_PATH - echo 'Contents of $PLAYWRIGHT_PATH/ortoni-report' && ls '$PLAYWRIGHT_PATH/ortoni-report' - echo 'Contents of $PLAYWRIGHT_PATH/test-results' && ls '$PLAYWRIGHT_PATH/test-results' - echo 'Contents of $PLAYWRIGHT_PATH/app' && ls '$PLAYWRIGHT_PATH/app' " )