Skip to content

Commit

Permalink
feat(toolresults): update the API
Browse files Browse the repository at this point in the history
#### toolresults:v1beta3

The following keys were added:
- schemas.LogcatCollectionError.description
- schemas.LogcatCollectionError.id
- schemas.LogcatCollectionError.type

The following keys were changed:
- schemas.TestIssue.properties.type.enum
- schemas.TestIssue.properties.type.enumDescriptions
  • Loading branch information
yoshi-automation authored and sofisl committed Mar 10, 2021
1 parent 536d98f commit 3dee17c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 11 additions & 3 deletions discovery/toolresults-v1beta3.json
Expand Up @@ -1463,7 +1463,7 @@
}
}
},
"revision": "20201102",
"revision": "20210308",
"rootUrl": "https://toolresults.googleapis.com/",
"schemas": {
"ANR": {
Expand Down Expand Up @@ -2501,6 +2501,12 @@
},
"type": "object"
},
"LogcatCollectionError": {
"description": "A warning that there were issues in logcat collection.",
"id": "LogcatCollectionError",
"properties": {},
"type": "object"
},
"MatrixDimensionDefinition": {
"description": "One dimension of the matrix of different runs of a step.",
"id": "MatrixDimensionDefinition",
Expand Down Expand Up @@ -3609,7 +3615,8 @@
"blankScreen",
"overlappingUiElements",
"unityException",
"deviceOutOfMemory"
"deviceOutOfMemory",
"logcatCollectionError"
],
"enumDescriptions": [
"Default unspecified type. Do not use. For versioning only.",
Expand Down Expand Up @@ -3641,7 +3648,8 @@
"Blank screen is found in the Robo crawl",
"Overlapping UI elements are found in the Robo crawl",
"An uncaught Unity exception was detected (these don't crash apps).",
"Device running out of memory was detected"
"Device running out of memory was detected",
"Problems detected while collecting logcat"
],
"type": "string"
},
Expand Down
4 changes: 4 additions & 0 deletions src/apis/toolresults/v1beta3.ts
Expand Up @@ -840,6 +840,10 @@ export namespace toolresults_v1beta3 {
*/
testCases?: Schema$TestCase[];
}
/**
* A warning that there were issues in logcat collection.
*/
export interface Schema$LogcatCollectionError {}
/**
* One dimension of the matrix of different runs of a step.
*/
Expand Down

0 comments on commit 3dee17c

Please sign in to comment.