debian-mirror-gitlab/spec/fixtures/api/schemas/entities/test_case.json
2023-03-04 22:38:38 +05:30

57 lines
No EOL
853 B
JSON

{
"type": "object",
"required": [
"status",
"name"
],
"properties": {
"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"
]
},
"recent_failures": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "test_case/recent_failures.json"
}
]
}
},
"additionalProperties": false
}