Skip to content

Commit 4984bd1

Browse files
committed
Reduce log output
1 parent 17b3dd1 commit 4984bd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ runs:
4747
Add(covs, Filename(d, f));
4848
od;
4949
Print("Merging coverage results from ", covs, "\n");
50-
r := MergeLineByLineProfiles(covs);
50+
r := MergeLineByLineProfiles(covs);;
5151
# filtered out unwanted other packages to avoid bad coverage interaction
52-
r.line_info := Filtered(r.line_info, x -> not StartsWith( x[1], "$GAPROOT/" ) );
52+
r.line_info := Filtered(r.line_info, x -> not StartsWith( x[1], "$GAPROOT/" ) );;
5353
Print("Outputting JSON\n");
5454
OutputJsonCoverage(r, "gap-coverage.json");
5555
QUIT_GAP(0);

0 commit comments

Comments
 (0)