Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markdown formatting on github pages #2540

Merged
merged 6 commits into from
Nov 19, 2024
Merged
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
43 changes: 24 additions & 19 deletions docs/feature/summary_output.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Formatted summary output
# Formatted summary output
```
┌─────────┬──────────────────────┬──────────────────────────┬─────────────────────────────────────────┐
│ OUTCOME │ MATRIX ID │ TEST AXIS VALUE │ TEST DETAILS │
Expand All @@ -16,24 +16,29 @@ As a user I want to see finely formatted summary result at the end of execution
Gcloud prints summary output in the table. It looks nice and is readable. Why we wouldn't have same in flank?

## Possible outputs
Numbers are representing `OUTCOME` column, points are representing `TEST DETAILS` column.
1. `success | flaky`
* `${1} test cases passed | ${2} skipped | ${3} flakes | (Native crash) | ---`
2. `failure`
* `${1} test cases failed | ${2} errors | ${3} passed | ${4} skipped | ${4} flakes | (Native crash)`
* `Application crashed | (Native crash)`
* `Test timed out | (Native crash)`
* `App failed to install | (Native crash)`
* `Unknown failure | (Native crash)`
3. `inconclusive`
* `Infrastructure failure`
* `Test run aborted by user`
* `Unknown reason`
4. `skipped`
* `Incompatible device/OS combination`
* `App does not support the device architecture`
* `App does not support the OS version`
* `Unknown reason`
Numbers represent the `OUTCOME` column, and bullet points represent the `TEST DETAILS` column.

1. success | flaky
- `${1} test cases passed | ${2} skipped | ${3} flakes | (Native crash) | ---`

2. failure
- `${1} test cases failed | ${2} errors | ${3} passed | ${4} skipped | ${4} flakes | (Native crash)`
- `Application crashed | (Native crash)`
- `Test timed out | (Native crash)`
- `App failed to install | (Native crash)`
- `Unknown failure | (Native crash)`

3. inconclusive
- `Infrastructure failure`
- `Test run aborted by user`
- `Unknown reason`

4. skipped
- `Incompatible device/OS combination`
- `App does not support the device architecture`
- `App does not support the OS version`
- `Unknown reason`


## Implementation details

Expand Down
Loading