Skip to content

Commit 59cb79e

Browse files
authored
Merge pull request #184 from qase-tms/cloud-runs
Add cloud run configuration properties to Run schema
2 parents 068e436 + 20875bb commit 59cb79e

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

testops-api/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ go install golang.org/x/tools/cmd/goimports@latest
4444
```
4545

4646
## Custom OpenAPI Generator
47-
The `openapi` function in the Taskfile uses Docker to run the `openapitools/openapi-generator-cli` tool,
48-
which is a versatile tool to generate client libraries, server stubs, and API documentation from
47+
48+
The `openapi` function in the Taskfile uses Docker to run the `openapitools/openapi-generator-cli` tool,
49+
which is a versatile tool to generate client libraries, server stubs, and API documentation from
4950
OpenAPI Specification definitions.
5051

5152
## Notes

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,19 @@ properties:
5252
type: string
5353
end_time:
5454
type: string
55+
56+
is_cloud:
57+
type: boolean
58+
description: Indicates if the run is created for the Test Cases produced by AIDEN
59+
cloud_run_config:
60+
type: object
61+
description: Configuration for the cloud run, if applicable
62+
properties:
63+
browser:
64+
type: string
65+
description: The browser to be used for the cloud run
66+
enum :
67+
- "chromium"
68+
- "firefox"
69+
- "webkit"
5570
required: [title]

0 commit comments

Comments
 (0)