debian-mirror-gitlab/spec/fixtures/api/schemas/entities/test_case.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
853 B
JSON
Raw Normal View History

2018-11-18 11:00:15 +05:30
{
"type": "object",
2023-03-04 22:38:38 +05:30
"required": [
2018-11-18 11:00:15 +05:30
"status",
"name"
],
"properties": {
2023-03-04 22:38:38 +05:30
"status": {
"type": "string"
},
"name": {
"type": "string"
},
"classname": {
"type": "string"
},
"file": {
"type": [
"string",
"null"
]
},
"execution_time": {
"type": "number",
"format": "float"
},
"system_output": {
"type": [
"string",
"null"
]
},
"stack_trace": {
"type": [
"string",
"null"
]
},
"attachment_url": {
"type": [
"string",
"null"
]
},
2021-01-29 00:20:46 +05:30
"recent_failures": {
"oneOf": [
2023-03-04 22:38:38 +05:30
{
"type": "null"
},
{
"$ref": "test_case/recent_failures.json"
}
2021-01-29 00:20:46 +05:30
]
}
2018-11-18 11:00:15 +05:30
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}