File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 5555
5656 - uses : ./.github/actions/install
5757
58- - run : zig build wpt -- --safe -- summary
58+ - run : zig build wpt -- --summary
5959
6060 # For now WPT tests doesn't pass at all.
6161 # We accept then to continue the job on failure.
8080 - uses : ./.github/actions/install
8181
8282 - name : json output
83- run : zig build wpt -- --safe -- json > wpt.json
83+ run : zig build wpt -- --json > wpt.json
8484
8585 - name : write commit
8686 run : |
Original file line number Diff line number Diff line change @@ -203,6 +203,13 @@ const Writer = struct {
203203 fn finalize (self : * Writer ) ! void {
204204 if (self .format == .json ) {
205205 try self .out .writeByte (']' );
206+ } else {
207+ try self .out .print ("\n ==Summary==\n Tests: {d}/{d}\n Cases: {d}/{d}\n " , .{
208+ self .pass_count ,
209+ self .pass_count + self .fail_count ,
210+ self .case_pass_count ,
211+ self .case_pass_count + self .case_fail_count ,
212+ });
206213 }
207214 }
208215
You can’t perform that action at this time.
0 commit comments