Skip to content

Commit 5b9ebb4

Browse files
authored
Merge pull request #179 from qase-tms/update-result-step-statuses
feat: add 'in_progress' status to TestStepResult and update descriptions
2 parents 96587ab + d22eb7c commit 5b9ebb4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

testops-api/v1/schemas/TestStepResult.create.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ properties:
99
- passed
1010
- failed
1111
- blocked
12+
- in_progress
1213
comment:
1314
type: string
1415
nullable: true

testops-api/v1/schemas/TestStepResult.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ type: object
22
properties:
33
status:
44
type: integer
5+
description: '1 - passed, 2 - failed, 3 - blocked, 5 - skipped, 7 - in_progress'
56
position:
67
type: integer
78
deprecated: true

testops-api/v2/schemas/ResultStepStatus.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ enum:
33
- passed
44
- failed
55
- blocked
6-
- skipped
6+
- skipped
7+
- in_progress

0 commit comments

Comments
 (0)