Skip to main content

Godot Scenario Report Kit

godot-scenario-report-kit validates and summarizes scenario run evidence from Godot projects. It reads the kit's small JSON result shape and common JUnit XML from GUT, GdUnit4, or custom runners. It does not replace those runners; it helps compare their output in CI and review artifacts.

Install

python -m pip install godot-scenario-report-kit

From a source checkout:

python -m pip install -e .\godot-scenario-report-kit

Quick Start

godot-scenario-report summarize examples\tiny-scenario-runs\current --format markdown

The path can be a single .json scenario result, a JUnit .xml file, or a directory containing .json and .xml results. If the path is wrong or the directory has no supported result files, the report exits with an input finding that explains what to pass next.

Summarize JUnit XML from an existing test runner:

godot-scenario-report summarize examples\tiny-scenario-runs\junit.xml --format markdown

Compare a baseline with a current run:

godot-scenario-report compare examples\tiny-scenario-runs\baseline examples\tiny-scenario-runs\current --format markdown

Check a scenario manifest and coverage policy:

godot-scenario-report manifest check examples\tiny-scenario-runs\scenario-manifest.json --results examples\tiny-scenario-runs\current --format markdown
godot-scenario-report manifest coverage examples\tiny-scenario-runs\scenario-manifest.json --results examples\tiny-scenario-runs\current --format html --output reports\scenario-coverage.html

Compare repeated runs for flaky status changes:

godot-scenario-report flake compare examples\tiny-scenario-runs\baseline examples\tiny-scenario-runs\current examples\tiny-scenario-runs\repeat-run --format markdown

Group retries from a runner that records multiple attempts in one result file or folder:

godot-scenario-report flake compare examples\tiny-scenario-runs\retry-run --format markdown

Bundle scenario evidence with nearby telemetry and visual reports:

godot-telemetry-lab timeline reports\runtime --format json --output reports\runtime-timeline.json
godot-scenario-report bundle examples\tiny-scenario-runs\current --manifest examples\tiny-scenario-runs\scenario-manifest.json --telemetry reports\runtime-timeline.json --visual examples\tiny-scenario-runs\visual-smoke.json --evidence log=examples\tiny-scenario-runs\run.log --evidence junit=examples\tiny-scenario-runs\junit.xml --format json --output reports\scenario-bundle.json

Result Shape

A run file can be a single JSON scenario:

{
  "scenario": "menu_startup",
  "status": "passed",
  "duration_ms": 820,
  "assertions": [
    {"name": "main menu visible", "status": "passed"}
  ],
  "artifacts": ["screenshots/menu.png"]
}

It can also contain a scenarios or runs list. Unknown fields are preserved in the source file and ignored by the report kit.

JUnit XML is also accepted wherever a result file or result directory is used. Each <testcase> becomes one scenario. classname and name are joined into a stable scenario id, time is converted from seconds to milliseconds, and <failure> or <error> children become failed assertions. <skipped> children produce skipped scenarios.

Checks

  • missing scenario names or statuses;
  • missing result paths or directories with no supported result files;
  • failed scenarios and failed assertions;
  • unreadable JUnit XML files;
  • missing artifact paths when artifacts are listed;
  • new failures compared with a baseline;
  • duration regressions compared with a baseline.
  • manifest entries without results, owners, tags, or expected artifacts;
  • missing required tag, platform, or critical-flow coverage;
  • scenarios whose status changes across repeated runs;
  • retried scenarios, including attempt count, ordered statuses, and final status.
  • missing artifacts or linked evidence paths in a bundle report, including telemetry, visual smoke, logs, JUnit XML, profiler captures, or other review files.

Manifest Shape

Scenario manifests are optional. They help teams describe the suite they expect to run, rather than only summarizing whatever files happened to be written:

{
  "coverage": {
    "required_tags": ["smoke", "economy"],
    "required_critical_flows": ["startup", "trade"],
    "required_platforms": ["desktop", "android"]
  },
  "scenarios": [
    {
      "id": "menu_startup",
      "owner": "ui",
      "tags": ["smoke"],
      "critical_flows": ["startup"],
      "platforms": ["desktop"],
      "expected_artifacts": ["screenshots/menu.png"]
    }
  ]
}

Outputs

  • text: local terminal report.
  • json: CI and scripts.
  • markdown: PR comments and release notes.
  • html: static artifact for run review.

The bundle command is intended for release dashboards and PR artifacts. It does not rewrite project-owned evidence; it builds a compact manifest of scenario results, listed artifacts, and optional telemetry or visual-smoke reports so reviewers can see which files belong together.

When --manifest is provided, the bundle adds a compact manifest_summary with expected scenario counts, result counts, missing results, unlisted results, missing expected artifacts, and missing required coverage tags, flows, or platforms. This keeps release bundles useful even when the main result set is only part of the expected suite.

When --telemetry points at JSON from godot-runtime-telemetry-lab, the bundle adds a compact telemetry_summary with sample count, frame p95, frame max, memory max, spike count, and finding counts. Raw telemetry samples are not copied into the bundle.

When --visual points at JSON from a visual smoke or screenshot comparison tool, the bundle adds a compact visual_summary with capture count, comparison count, changed comparisons, warnings, and errors. The bundle links screenshots or diff reports by path; it does not copy or embed images.

Use --evidence KIND=PATH for extra files that help a human review the run, such as log=reports\run.log, junit=reports\junit.xml, or profile=reports\frame-profile.html. The bundle links these files; it does not copy, rewrite, or inline them. Keep paths relative to the review artifact folder when possible, and check that logs or reports do not include private machine paths before sharing them.

When linked evidence is a log file, the bundle records only compact counts: file count, line count, warning-like lines, error-like lines, and crash-like lines. Log contents are not embedded in JSON, Markdown, or HTML output.

Reports include the package version, a schema version, and a small rule catalog. Each finding includes a stable rule_id plus a short rule_help field so CI jobs, PR comments, and local scripts can explain what to check next without hard-coding those messages separately.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

godot_scenario_report_kit-0.1.11.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

godot_scenario_report_kit-0.1.11-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file godot_scenario_report_kit-0.1.11.tar.gz.

File metadata

File hashes

Hashes for godot_scenario_report_kit-0.1.11.tar.gz
Algorithm Hash digest
SHA256 9ab2f40bce528b6e33ff4b102a2f790b190c3b79f65d462759c93446c1466eec
MD5 014f17b044535e628423338134bb65e6
BLAKE2b-256 e72cc6720b85fb72470812eb8d90e466dc699b104d318d05003e008b5cd7ecfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for godot_scenario_report_kit-0.1.11.tar.gz:

Publisher: publish-scenario-report-kit.yml on NonniGB/godot-production-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file godot_scenario_report_kit-0.1.11-py3-none-any.whl.

File metadata

File hashes

Hashes for godot_scenario_report_kit-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 f2f9540d621f4be03b2088ca4d8b06ea7ab6ce3a707e71798695cb66020df73b
MD5 57f3fb1e968e75cb06c7a6e39e80b85e
BLAKE2b-256 804b4d01efdff1fd0aeb3415316c00bb4f74ef9ccd5ab056b19a3e6d4184e625

See more details on using hashes here.

Provenance

The following attestation bundles were made for godot_scenario_report_kit-0.1.11-py3-none-any.whl:

Publisher: publish-scenario-report-kit.yml on NonniGB/godot-production-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page