Skip to content

Commit 3406016

Browse files
committed
test jekyll config
1 parent 271ca05 commit 3406016

File tree

2 files changed

+35
-36
lines changed

2 files changed

+35
-36
lines changed

_config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# _config.yml
2+
name: Flank
3+
markdown: GFM # GitHub Flavored Markdown
4+
plugins:
5+
- jekyll-relative-links
6+
relative_links:
7+
enabled: true
8+
collections: true
9+
10+
# Optional: Default layout for markdown files
11+
defaults:
12+
-
13+
scope:
14+
path: ""
15+
type: "pages"
16+
values:
17+
layout: "default"

docs/feature/summary_output.md

+18-36
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,24 @@ As a user I want to see finely formatted summary result at the end of execution
1616
Gcloud prints summary output in the table. It looks nice and is readable. Why we wouldn't have same in flank?
1717

1818
## Possible outputs
19-
20-
[//]: # (Numbers are representing `OUTCOME` column, points are representing `TEST DETAILS` column.)
21-
22-
[//]: # (1. `success | flaky`)
23-
24-
[//]: # ( * `${1} test cases passed | ${2} skipped | ${3} flakes | (Native crash) | ---`)
25-
26-
[//]: # (2. `failure`)
27-
28-
[//]: # ( * `${1} test cases failed | ${2} errors | ${3} passed | ${4} skipped | ${4} flakes | (Native crash)`)
29-
30-
[//]: # ( * `Application crashed | (Native crash)`)
31-
32-
[//]: # ( * `Test timed out | (Native crash)`)
33-
34-
[//]: # ( * `App failed to install | (Native crash)`)
35-
36-
[//]: # ( * `Unknown failure | (Native crash)`)
37-
38-
[//]: # (3. `inconclusive`)
39-
40-
[//]: # ( * `Infrastructure failure`)
41-
42-
[//]: # ( * `Test run aborted by user`)
43-
44-
[//]: # ( * `Unknown reason`)
45-
46-
[//]: # (4. `skipped`)
47-
48-
[//]: # ( * `Incompatible device/OS combination`)
49-
50-
[//]: # ( * `App does not support the device architecture`)
51-
52-
[//]: # ( * `App does not support the OS version`)
53-
54-
[//]: # ( * `Unknown reason`)
19+
Numbers are representing `OUTCOME` column, points are representing `TEST DETAILS` column.
20+
1. `success | flaky`
21+
* `${1} test cases passed | ${2} skipped | ${3} flakes | (Native crash) | ---`
22+
2. `failure`
23+
* `${1} test cases failed | ${2} errors | ${3} passed | ${4} skipped | ${4} flakes | (Native crash)`
24+
* `Application crashed | (Native crash)`
25+
* `Test timed out | (Native crash)`
26+
* `App failed to install | (Native crash)`
27+
* `Unknown failure | (Native crash)`
28+
3. `inconclusive`
29+
* `Infrastructure failure`
30+
* `Test run aborted by user`
31+
* `Unknown reason`
32+
4. `skipped`
33+
* `Incompatible device/OS combination`
34+
* `App does not support the device architecture`
35+
* `App does not support the OS version`
36+
* `Unknown reason`
5537

5638
## Implementation details
5739

0 commit comments

Comments
 (0)