Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_report_summary.json « job « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 056a02854d490262df8592a580a28671ea633311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "type": "object",
  "properties": {
    "total": {
      "type": "object",
      "properties": {
        "time": { "type": "number" },
        "count": { "type": "number" },
        "success": { "type": "number" },
        "failed": { "type": "number" },
        "skipped": { "type": "number" },
        "error": { "type": "number" },
        "suite_error": { "type": ["string", "null"] }
      }
    },
    "test_suites": {
      "type": "array",
      "items": {
        "name": { "type": "string" },
        "total_time": { "type": "number" },
        "total_count": { "type": "number" },
        "success_count": { "type": "number" },
        "failed_count": { "type": "number" },
        "skipped_count": { "type": "number" },
        "error_count": { "type": "number" },
        "build_ids": {
          "type": "array",
          "items": { "type": "number" }
        },
        "suite_error": { "type": ["string", "null"] }
      }
    }
  }
}