authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-12-28 19:33:05 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-12-28 19:33:05 -08:00
log7f5f1857e06fa23123d566cc4468133b57ed532e
tree3b2a9286478cd218f85a8e1a5959883d338408a4
parent56810444d1050c1e05623c328ae5465a4e695515

tests have side effects


1 files changed, 1 insertions(+), 0 deletions(-)

build.zig+1
...@@ -16,6 +16,7 @@ pub fn build(b: *std.Build) void {...@@ -16,6 +16,7 @@ pub fn build(b: *std.Build) void {
16 });16 });
1717
18 const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);18 const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
19 run_exe_unit_tests.has_side_effects = true;
1920
20 const test_step = b.step("test", "dummy test step to pass CI checks");21 const test_step = b.step("test", "dummy test step to pass CI checks");
21 test_step.dependOn(&run_exe_unit_tests.step);22 test_step.dependOn(&run_exe_unit_tests.step);