Skip to content

Commit ceb343b

Browse files
committed
Remove unnecessary function from build
1 parent 5741081 commit ceb343b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

build.zig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ pub fn build(b: *std.Build) void {
3434
test_step.dependOn(&run_lib_unit_tests.step);
3535

3636
if (coverage) {
37-
try addCoverageReporting();
38-
3937
var run_test_steps: std.ArrayListUnmanaged(*std.Build.Step.Run) = .empty;
4038
run_test_steps.append(b.allocator, run_lib_unit_tests) catch @panic("OOM");
4139

@@ -65,5 +63,3 @@ pub fn build(b: *std.Build) void {
6563
test_step.dependOn(&install_coverage.step);
6664
}
6765
}
68-
69-
fn addCoverageReporting() !void {}

0 commit comments

Comments
 (0)