Skip to main content

py-maestro-reporter

badge PyPI - Python Version PyPI Downloads coverage

py-maestro-reporter is a lightweight tool that helps you:

  • Run Maestro test seamlessly
  • Parse Maestro JUnit reports
  • Send summarized test results to a Lark/Slack respective group

It can be used either as a CLI tool or a python package into your own test pipelines

Prerequisites

  • Python 3.10 or above
  • Maestro framework installed on your system (version 2.0.0 or above)
  • Device/emulator with the app under test installed
  • Lark/Slack webhook URL

Installation

For the installation, you can either install the package from PyPI or from source. If you'd like to install from PyPI, you can install it with:

pip install maestro-reporter

Or, using uv:

uv pip install maestro-reporter

Or, if you'd prefer to install from source, you'll need to clone this repository and install it in editable mode:

pip install -e .

Usage

Using as a CLI argument

This package expose a CLI via the reporter module

All you need to do is, ensure you have Maestro installed on your device, example flows which is going to be tested, physical device / emulator and Webhook URL from Lark. Once you have all of these, you can run with :

python -m reporter \
    -c "maestro test examples/facebook-sign-up-flow.yaml --format junit --output tests/report.xml" \
    -r "tests/report.xml" \
    -w "https://webhook.url.com"

Parsing an existing report

Or, if you only want to run and parse the report without testing, you can use --no-run flag

python -m reporter \
    --no-run \
    -r "tests/report.xml" \
    -w "https://webhook.url.com"

You can also overrides the Webhook URL by setting the LARK_URL or SLACK_URL environment variable in your .env file, depending on the provider you choose.

Using the reporter package

Otherwise, if you'd like to run the tests without using the CLI arguments and you need to run the tests with the reporter package, you can follow the example below (this will test the Facebook sign up flow):

import os
from dotenv import load_dotenv
from reporter import parse_xml_report, send_report_to_lark, run_maestro_command


load_dotenv()


command = "maestro test examples/facebook-sign-up-flow.yaml --format junit --output build/maestro-results/report.xml"
report_path = run_maestro_command(command=command, cwd="tests")
parsed_result = parse_xml_report(file_path=str(report_path))
report = send_report_to_lark(
    summary=parsed_result,
    title="Maestro Reporter Test",
    color_template="Green",
    webhook_url=os.getenv("LARK_URL"),
)

The parameters of color_template and title are mandatory, if you don't provide them, the default values will be used

Note (v0.7.0): run_maestro_command reads the --output argument from your command, creates the report's parent directory automatically, and returns the resolved report path: use its return value for parse_xml_report instead of hardcoding a path. Both run_maestro_command and parse_xml_report now raise an exception (e.g. RuntimeError, FileNotFoundError) on failure instead of silently returning None.

All successful tests (from execute the Maestro command -> parse the report -> send the report to Lark) will be displayed in the log stream handler, for example:

27-11-2025 : 10:51:46 : main : [WARNING] : No color template provided, using default color template or you can set it with `--color` flag
27-11-2025 : 10:51:46 : main : [WARNING] : No title provided, using default title or you can set it with `--title` flag
27-11-2025 : 10:51:46 : main : [INFO] : --no-run flag is set, skipping Maestro tests
27-11-2025 : 10:51:46 : main : [INFO] : Parsing Maestro report file: tests/report.xml
27-11-2025 : 10:51:46 : main : [INFO] : Sending Maestro report to Lark...
27-11-2025 : 10:51:46 : reporter.sender : [INFO] : Lark message sent successfully
27-11-2025 : 10:51:46 : main : [INFO] : Maestro report sent successfully

Once the report is sent successfully, you should be able to see the interactive card message in your Lark group like the following image

Lark Interactive Card Message

Otherwise, if you want to use Slack as a reporting platform, the card message will be displayed as follows

Slack Card Message

CLI arguments

List of available CLI arguments that you can use with this package:

arguments description
-h / --help show this help message and exit
-c / --command Maestro command to run
-r / --report Path to Maestro report, by default it's report.xml but you can configure it by yourself
-w / --webhook Specify a webhook URL to send the report to Lark
-n / --no-run No need to run Maestro tests, just parse the report and send the result to Lark
-t / --title Set a custom title for the interactive card Lark message
-ct / --color Set a custom color template for the interactive card Lark message
-p / --provider Specify the reporting platform (lark or slack). Default is lark

Notes

  • At the moment, this package only supports the parsing of the junit format as follows for the Maestro report
  • In addition, the webhook integration currently supports Lark and Slack
  • The interactive card message is built using the msg_actioncard message type for Lark and Block Kit for Slack

Further references

Release files for maestro-reporter 0.7.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for maestro-reporter 0.7.0
File Size Uploaded
maestro_reporter-0.7.0.tar.gz 13.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for maestro-reporter 0.7.0
File Interpreter ABI Platform
maestro_reporter-0.7.0-py3-none-any.whl Python 3 none any Details

Total release size: 30.2 kB

Release files / maestro_reporter-0.7.0.tar.gz

Download URL maestro_reporter-0.7.0.tar.gz
Size 13.6 kB
Tags Source
SHA-256 checksum
How to use checksums
34a0c1216afd06af74cd94f50782d377b4eda9bd33d6090189129fd2132eb674
BLAKE2b-256 checksum
How to use checksums
81f95a5ea64f1e5a74a2b4f8291cfd6b24f58c16e05611e6864e4c59a6a0c345
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / maestro_reporter-0.7.0-py3-none-any.whl

Download URL maestro_reporter-0.7.0-py3-none-any.whl
Size 16.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c8afc37b0b25de078160d1abd3d19cd45a3bb69abef13f10765fc2006f64dbfd
BLAKE2b-256 checksum
How to use checksums
f8b8851b30f6a9b5d6451d1689d61e254f93964c44ded17da759c9f6ce27e9e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release history Release notifications | RSS feed

0.9.0

2 release files

0.8.0

2 release files

This release

0.7.0 This release

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page