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

test_suite_comparer.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 192a8f3fd7168ecf20a9a71958883eb456106714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "properties": {
    "name": { "type": "string" },
    "status": { "type": "string" },
    "summary": {
      "total": { "type": "integer" },
      "resolved": { "type": "integer" },
      "failed": { "type": "integer" }
    },
    "new_failures": { "type": "array", "items": { "$ref": "test_case.json" } },
    "resolved_failures": { "type": "array", "items": { "$ref": "test_case.json" } },
    "existing_failures": { "type": "array", "items": { "$ref": "test_case.json" } }
  },
  "additionalProperties": false
}