Syncs automated test results into test management tools - TestRail (standalone, `add_run` + batched `add_results_for_cases`), Xray for Jira (JWT auth + `/api/v2/import/execution/*`), and Zephyr Scale (Bearer token + `/testexecutions`) - from CI. The body carries the vendor-independent push-results workflow (map tests to case IDs, open a run / execution / cycle per build, batch results back, close on main only, run as an `if: always()` step) with TestRail as the worked example; full vendor specifics live in references/ (testrail.md, xray.md, zephyr.md). Use when automated suites must keep the team's test management view in sync without a human copy-paste step; for hosted cross-run flakiness analytics rather than TCM sync use currents-integration, and for authoring / migrating test CASES rather than pushing results see qa-test-management's tcm-case-management.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Reference detail for test-management-sync. TestRail (Gurock / Idera) is the standalone (non-Jira) test management tool; the body's worked example targets it. This page carries the full vendor detail: auth, case-ID mapping, run lifecycle, per-result fields, CI wiring, and untested-case handling.
TestRail uses HTTP Basic auth with email + API key (preferred over password - the API key is per-user, revocable):
# Generated in TestRail: My Settings → API Keys
TESTRAIL_API_KEY=<generated>
TESTRAIL_USER=test-runner@example.com
TESTRAIL_HOST=https://yourcompany.testrail.ioAll requests use:
Authorization: Basic <base64(email:api_key)>
Content-Type: application/jsonThe base API URL is ${TESTRAIL_HOST}/index.php?/api/v2. Every
endpoint is appended after ?/api/v2.
Two common patterns:
def test_C1234_can_add_to_cart():
...A regex extracts C1234 (the TestRail case ID) at sync time.
@Test
@TestRailCase(id = 1234)
void canAddToCart() { ... }Or in JS:
test('can add to cart [C1234]', async () => {
// ...
});Pattern A is the lowest-friction; Pattern B is cleaner when the test framework supports custom annotations. Either way, the sync script needs a way to find the case ID from the test result.
# scripts/testrail_sync.py
import base64, json, requests
from os import environ as env
API = f"{env['TESTRAIL_HOST']}/index.php?/api/v2"
AUTH = base64.b64encode(f"{env['TESTRAIL_USER']}:{env['TESTRAIL_API_KEY']}".encode()).decode()
HEADERS = {'Authorization': f'Basic {AUTH}', 'Content-Type': 'application/json'}
def open_run(project_id, suite_id, name, case_ids):
r = requests.post(
f'{API}/add_run/{project_id}',
headers=HEADERS,
json={
'suite_id': suite_id,
'name': name,
'include_all': False,
'case_ids': case_ids,
},
)
r.raise_for_status()
return r.json()['id'] # Run IDinclude_all: False + case_ids: [...] opens a run scoped to the
exact cases the automated suite covers. Without this, a 5,000-case
project produces a 5,000-row Test Run with thousands of empty
cells.
The well-known status ID convention for stock TestRail installations:
| Status | ID |
|---|---|
| Passed | 1 |
| Blocked | 2 |
| Untested | 3 |
| Retest | 4 |
| Failed | 5 |
Custom status IDs (added by the project admin) follow 6+. Read the
get_statuses endpoint at sync-script init to confirm - don't
hard-code.
Verify before batching: call get_statuses and assert every
status_id in your map appears in the returned set. If one is missing
(a renamed or custom status), fix the map and re-run rather than
posting - TestRail accepts an unknown status_id and writes the result
to the wrong status silently.
def add_results(run_id, results):
"""results = [{'case_id': 1234, 'status_id': 1, 'comment': '...', 'elapsed': '12s'}]"""
r = requests.post(
f'{API}/add_results_for_cases/{run_id}',
headers=HEADERS,
json={'results': results},
)
r.raise_for_status()
return r.json()Use add_results_for_cases (batch), not add_result_for_case
(per-case). A 200-test run is one POST instead of 200 POSTs;
TestRail's rate limit (180 req/min on shared cloud) makes per-case
posting flaky.
Fields accepted on each entry in the add_results_for_cases
results array:
| Field | Use |
|---|---|
case_id | Required. The TestRail case ID. |
status_id | Required. Per the status-ID convention above. |
comment | The test framework's failure message + stack trace. |
elapsed | Format: '1h 30m 45s' or '45s'. Optional. |
version | Build version / commit SHA. Searchable in the UI. |
defects | Comma-separated Jira / GitHub issue keys. |
assignedto_id | Auto-assign failures to a specific user. |
After all results are in:
def close_run(run_id):
requests.post(f'{API}/close_run/{run_id}', headers=HEADERS)Closed runs are read-only - no further results can be added. Useful for release-stamp runs; skip for runs that get re-run.
- name: Run tests
run: npm test -- --reporters=jest-junit
env:
JEST_JUNIT_OUTPUT_FILE: junit.xml
- name: Sync to TestRail
if: always()
env:
TESTRAIL_HOST: ${{ secrets.TESTRAIL_HOST }}
TESTRAIL_USER: ${{ secrets.TESTRAIL_USER }}
TESTRAIL_API_KEY: ${{ secrets.TESTRAIL_API_KEY }}
TESTRAIL_PROJECT_ID: '42'
TESTRAIL_SUITE_ID: '7'
BUILD_VERSION: ${{ github.sha }}
run: python scripts/testrail_sync.py junit.xmlThe sync script:
junit.xml (see junit-xml-analysis).<branch> · <sha-short>.main.Tests that have no TestRail case ID (case removed; new test; intentional sync-skip) need explicit handling:
unmapped = [t for t in tests if extract_case_id(t['name']) is None]
if unmapped:
print(f"Warning: {len(unmapped)} tests have no TestRail case ID:")
for t in unmapped:
print(f" - {t['name']}")Don't silently drop unmapped tests - they're candidates for either new TestRail cases or naming-pattern fixes.
| Anti-pattern | Why it fails | Fix |
|---|---|---|
Per-test add_result_for_case calls | N API calls; rate limit (180 req/min on Cloud) trips on suites >180 cases. | add_results_for_cases batch. |
Hard-coded status IDs without get_statuses | Custom statuses break the mapping; "Failed" goes to "Custom Status" silently. | Fetch get_statuses at script init; build the map dynamically. |
include_all: True on add_run | The run includes every case in the suite, most as Untested; runs become noise. | include_all: False + explicit case_ids: [...]. |
| Posting credentials as URL params | Secrets leak in proxy logs. | Always Basic auth header. |
| No retry on 5xx | TestRail Cloud has occasional 502s; one transient failure loses the whole run. | Retry with exponential backoff on 5xx; cap at 3 attempts. |
| Closing every run, including PR runs | Closed runs can't accept reruns; a PR retest after fixing flake fails to update. | Close only main runs; PR runs stay open. |
| Storing case IDs in test code AND in TestRail | Two sources of truth; renames drift. | TestRail is canonical; test code references via ID only (Pattern A). |
add_case before the first sync; the sync script
doesn't create cases on the fly.custom_step_results
is per-installation; the project admin must enable a custom field
for steps before the API accepts step-level data.https://support.testrail.com/hc/en-us/categories/7080117421716
(categorized KB; per-endpoint articles).https://support.testrail.com/hc/en-us/sections/7077986539540
(Results / Runs / Cases / Statuses endpoints).testrail (Python),
testrail-java-client (Java), testrail-api (JS) - reference
implementations of the API shapes above.