Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions report/schemas/models/attachment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,5 @@ properties:
mime_type:
type: string
nullable: true
size:
type: number
nullable: true
id:
type: string
29 changes: 8 additions & 21 deletions report/schemas/result.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,11 @@ properties:
type: string
nullable: true
fields:
type: array
type: object
nullable: true
items:
type: object
properties:
name:
type: string
value:
type: string
nullable: true
description: custom fields as key-value pairs
additionalProperties:
type: string
id:
type: string
message:
Expand All @@ -43,16 +38,11 @@ properties:
muted:
type: boolean
params:
type: array
type: object
nullable: true
items:
type: object
properties:
name:
type: string
value:
type: string
nullable: true
description: test parameters as key-value pairs
additionalProperties:
type: string
param_groups:
type: array
nullable: true
Expand Down Expand Up @@ -84,9 +74,6 @@ properties:
type: array
items:
$ref: "./models/step.yaml"
testops_id:
type: number
nullable: true
testops_ids:
type: array
nullable: true
Expand Down
25 changes: 12 additions & 13 deletions report/schemas/root.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# File: run.json
# Main report file containing aggregated test run data

type: object
properties:
title:
Expand Down Expand Up @@ -33,9 +36,12 @@ properties:
skipped:
type: number
description: number of skipped tests in the report
broken:
blocked:
type: number
description: number of broken tests in the report
description: number of blocked tests in the report
invalid:
type: number
description: number of invalid tests in the report
muted:
type: number
description: number of muted tests in the report
Expand Down Expand Up @@ -78,14 +84,7 @@ properties:
description: environment of the report
nullable: true
host_data:
type: array
description: list of host data in the report. Like hostname, os, version etc.
items:
type: object
properties:
name:
type: string
description: name of the host data
value:
type: string
description: value of the host data
type: object
description: host data in the report. Like hostname, os, version etc.
additionalProperties:
type: string