name: run-maestro-release-tests description: Run the full FeedFlow Maestro release validation suite and produce HTML and Markdown pass/fail reports. Use when the user asks to run all Maestro tests, validate E2E coverage before release, check Android and iOS Maestro flows, or summarize failed FeedFlow E2E flows.
Run Maestro Release Tests
Run FeedFlow's full local Maestro release gate across Android and iOS, then report what passed, what failed, and where the logs are.
Workflow
Confirm the repo root is the FeedFlow project containing
e2e/maestro/ande2e/scripts/.Run the bundled script from the repo root:
python3 .ai/skills/run-maestro-release-tests/scripts/run_maestro_release_tests.pyIf the user asks for a narrower pass, pass explicit flags:
# Android only python3 .ai/skills/run-maestro-release-tests/scripts/run_maestro_release_tests.py --platform android # iOS only python3 .ai/skills/run-maestro-release-tests/scripts/run_maestro_release_tests.py --platform ios # Smoke only while debugging python3 .ai/skills/run-maestro-release-tests/scripts/run_maestro_release_tests.py --suite smokeOpen or read the generated
report.htmlfirst. Usereport.mdas a terminal-friendly fallback. Summarize:- total pass/fail counts by platform and suite
- failed flow filenames
- each failed flow's report classification, brief analysis, and evidence line
- setup failures, if any
- HTML report path and log directory
Preconditions
- Maestro must be installed as
maestro. - Android needs a running device or emulator. The repo default is
Resizable_Experimental. - iOS needs a booted
iPhone 17 Prosimulator. The script usesSIMULATOR_UDIDwhen present, otherwise it detects the booted simulator. - iOS needs
iosApp/FeedFlow.xcodeproj; the script generates it when missing.
Behavior
When both platforms are selected, the script runs Android and iOS in parallel. Each platform still builds and installs once, pushes fixtures, then runs every YAML flow for that platform in sorted order from:
e2e/maestro/android/smokee2e/maestro/android/regressione2e/maestro/ios/smokee2e/maestro/ios/regression
It continues after failed flows so the final report captures the full failure set. It exits non-zero when any setup step or flow fails.
Reports and logs are written under:
.tmp/maestro-release-tests/<timestamp>/
The main visual report is report.html. It contains run metadata, setup/build steps, suite summaries, failed flows, brief failure classifications, evidence lines from logs, and every selected test with links to per-flow logs. The script also writes report.md for quick terminal review.
Use the per-flow logs in that directory together with Maestro artifacts under ~/.maestro/tests/ when debugging failures. Treat the report classification as a first-pass diagnosis, then verify ambiguous cases against screenshots and UI hierarchies before calling a failure a product regression.