File tree Expand file tree Collapse file tree 1 file changed +19
-8
lines changed
Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Original file line number Diff line number Diff line change 77 }
88
99 Section struct {
10- Score int `json:"score"`
11- Total int `json:"total_sent"`
12- Resolved int `json:"resolved_tests"`
13- Blocked int `json:"blocked_tests"`
14- Bypassed int `json:"bypassed_tests"`
15- Unresolved int `json:"unresolved_tests"`
16- Failed int `json:"failed_tests"`
17- Tests string `json:"test_sets"`
10+ Score int `json:"score"`
11+ Total int `json:"total_sent"`
12+ Resolved int `json:"resolved_tests"`
13+ Blocked int `json:"blocked_tests"`
14+ Bypassed int `json:"bypassed_tests"`
15+ Unresolved int `json:"unresolved_tests"`
16+ Failed int `json:"failed_tests"`
17+ Tests map [string ]Set `json:"test_sets"`
18+ }
19+
20+ Set map [string ]Item
21+
22+ Item struct {
23+ Percentage float64 `json:"percentage"`
24+ Sent int `json:"sent"`
25+ Blocked int `json:"blocked"`
26+ Bypassed int `json:"bypassed`
27+ Unresolved int `json:"unresolved"`
28+ Failed int `json:"failed"`
1829 }
1930)
You can’t perform that action at this time.
0 commit comments