We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5741081 commit ceb343bCopy full SHA for ceb343b
build.zig
@@ -34,8 +34,6 @@ pub fn build(b: *std.Build) void {
34
test_step.dependOn(&run_lib_unit_tests.step);
35
36
if (coverage) {
37
- try addCoverageReporting();
38
-
39
var run_test_steps: std.ArrayListUnmanaged(*std.Build.Step.Run) = .empty;
40
run_test_steps.append(b.allocator, run_lib_unit_tests) catch @panic("OOM");
41
@@ -65,5 +63,3 @@ pub fn build(b: *std.Build) void {
65
63
test_step.dependOn(&install_coverage.step);
66
64
}
67
68
69
-fn addCoverageReporting() !void {}
0 commit comments