-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwith-retries.json
More file actions
54 lines (54 loc) · 1.07 KB
/
with-retries.json
File metadata and controls
54 lines (54 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"reportFormat": "CTRF",
"specVersion": "1.0.0",
"results": {
"tool": {
"name": "example-runner",
"version": "1.0.0"
},
"summary": {
"tests": 2,
"passed": 2,
"failed": 0,
"pending": 0,
"skipped": 0,
"other": 0,
"flaky": 1,
"start": 1609459200000,
"stop": 1609459210000
},
"tests": [
{
"name": "stable test",
"status": "passed",
"duration": 150
},
{
"name": "flaky test",
"status": "passed",
"duration": 300,
"flaky": true,
"retries": 2,
"retryAttempts": [
{
"attempt": 1,
"status": "failed",
"duration": 120,
"message": "Connection timeout"
},
{
"attempt": 2,
"status": "failed",
"duration": 130,
"message": "Connection timeout"
},
{
"attempt": 3,
"status": "passed",
"duration": 140
}
]
}
]
}
}