Run Status Mapping Hint

Define how test statuses from the XML report map to ALM using  YAML format.

Do not use Explicit and Implicit mapping together. Choose one.

Explicit Mapping: Use when the XML report explicitly states a status (e.g., <testcase status="Success"/>).
status:
    Success:   Passed
    "In Progress":   "Not Completed"
    Failure:   Failed

    All possible XML statuses must be mapped,  or the test run won’t be created.
    If an unmapped status is found, the Jenkins job will fail.


Implicit Mapping: Use when the XML does not explicitly state "Passed" or "Failed."
run:
    status:   "x:failedSince"
status:
    Failed:   ">0"

    Set either a "Passed" or "Failed" condition, not both.
    If neither condition is met, the test run won’t be created.

Use spaces (not tabs)  for YAML indentation (2-space recommended).

For full details, refer to the online help.