Skip to content

Commit

Permalink
style: rename library coverage step
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorush committed Mar 11, 2024
1 parent 738dd6c commit 46ee289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/lib/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub fn build(b: *std.Build) void {
b.default_step.dependOn(tests_step);

// Coverage
const cov_step = b.step("cov", "Generate code coverage report");
const cov_step = b.step("cov", "Generate coverage");

const cov_run = b.addSystemCommand(&.{ "kcov", "--clean", "--include-pattern=src/", "kcov-output" });
cov_run.addArtifactArg(tests);
Expand Down

0 comments on commit 46ee289

Please sign in to comment.