diff --git a/build.zig b/build.zig index c1e71ffa5c4dfd097f456120fb0f0d7f4be84be7..5eaf6246cd7599f2b45852e3151c3e6160fd171f 100644 --- a/build.zig +++ b/build.zig @@ -19,6 +19,7 @@ pub fn build(b: *std.Build) void { tests.root_module.addImport("extras", mod); tests.use_llvm = !disable_llvm; tests.use_lld = !disable_llvm; + b.getInstallStep().dependOn(&tests.step); const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests);