Skip to content

Commit b281c44

Browse files
attempting to fix e2e tests
1 parent 732ed76 commit b281c44

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,14 @@ jobs:
119119
mkdir -p example/maestro-output/debug
120120
maestro test ./example/maestro/ --format junit --output example/maestro-results.xml --debug-output example/maestro-output/debug || true
121121
# Attempt to record each Flow file individually (maestro record accepts a single flow file)
122+
bash << 'EOF'
122123
for f in ./example/maestro/*.yaml ./example/maestro/*.yml ./example/maestro/*.flow; do
123124
if [ -f "$f" ]; then
124125
echo "Recording $f"
125126
maestro record --local "$f" "example/maestro-output/$(basename "$f").mp4" --debug-output example/maestro-output/debug || echo "record failed for $f"
126127
fi
127128
done
129+
EOF
128130
# If Maestro wrote to the user home tests dir, copy those into the output dir for upload
129131
if [ -d "$HOME/.maestro/tests" ]; then
130132
mkdir -p example/maestro-output/.maestro-tests

0 commit comments

Comments
 (0)