Adds debug logging for test execution
Enhances debugging capabilities during test execution by adding logging to capture directory contents. This helps diagnose potential issues related to file access or environment setup within the test environment.
This commit is contained in:
parent
db8efa267d
commit
6b410c432c
1 changed files with 11 additions and 0 deletions
|
|
@ -245,6 +245,17 @@ jobs:
|
|||
JIRA_CARD_NUMBER="${branch_name##*/}"
|
||||
echo "Extracted JIRA Card number: '$JIRA_CARD_NUMBER'"
|
||||
export PLAYWRIGHT_PATH="${{ parameters.playwrightTestsPath }}"
|
||||
|
||||
echo "📁 Current directory: $(pwd)"
|
||||
echo "📂 Contents of current directory:"
|
||||
ls -al
|
||||
|
||||
echo "📂 Contents of ./ortoni-report (if exists):"
|
||||
ls -al ./ortoni-report || echo "No ortoni-report directory found"
|
||||
|
||||
echo "📂 Contents of /app/test-results (if mounted later):"
|
||||
ls -al /app/test-results || echo "No /app/test-results directory found"
|
||||
|
||||
container_id=$(docker create \
|
||||
--ipc=host \
|
||||
--env-file "${{ parameters.envFileName }}" \
|
||||
|
|
|
|||
Loading…
Reference in a new issue