testsuites
1 row where build_id = 10638
This data as json, CSV (advanced)
| id ▼ | build_id | url | name | timestamp | time | tests | failures | errors | skipped |
|---|---|---|---|---|---|---|---|---|---|
| 142296 | 10638 10638 | https://integration.wikimedia.org/ci/job/selenium-daily-beta-Math/1149/artifact/log/WDIO.xunit-2021-10-11T00-14-34-191Z.xml | Math | 1633932875 | 11.113 | 1 | 0 | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE testsuites (
id INTEGER PRIMARY KEY,
build_id INTEGER NOT NULL,
url TEXT NOT NULL,
name TEXT,
timestamp INTEGER,
time REAL,
tests INTEGER,
failures INTEGER,
errors INTEGER,
skipped INTEGER,
UNIQUE(url,name,timestamp),
FOREIGN KEY(build_id) REFERENCES builds(id)
);