generated from aicoe-aiops/project-template
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added doc for interpreration testgrid labels (#71)
* added doc for testgrid labels * added doc for testgrid labels
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Interpreation of cell values and labels in TestGrid data | ||
|
||
**Interpretation of cell values:** | ||
|
||
In this [file](https://github.com/GoogleCloudPlatform/testgrid/blob/a18fe953cf98174c215c43e0258b0515e37c283b/pb/test_status/test_status.proto#L3), we can see the meaning of different cell values. | ||
|
||
| Value | Interpretation | | ||
| ----- | -------------- | | ||
| 0 | `NO_RESULT` | | ||
| 1 | `PASS` | | ||
| 2 | `PASS_WITH_ERRORS` | | ||
| 3 | `PASS_WITH_SKIPS` | | ||
| 4 | `RUNNING` | | ||
| 5 | `CATEGORIZED_ABORT` | | ||
| 6 | `UNKNOWN` | | ||
| 7 | `CANCEL` | | ||
| 8 | `BLOCKED` | | ||
| 9 | `TIMED_OUT` | | ||
| 10 | `CATEGORIZED_FAIL` | | ||
| 11 | `BUILD_FAIL` | | ||
| 12 | `FAIL` | | ||
| 13 | `FLAKY` | | ||
| 14 | `TOOL_FAIL` | | ||
| 15 | `BUILD_PASSED` | | ||
|
||
|
||
|
||
**Interpretation of labels:** | ||
|
||
| Label | Interpretation | | ||
| ----- | -------------- | | ||
| `F` | Failed | | ||
| `R` | Running | |