diff --git a/build.zig b/build.zig index fdb05192a2b22d24929493a8a2a33d71af6568ea..6873a25d0c7ba768426f1455abbebba727e30c9d 100644 --- a/build.zig +++ b/build.zig @@ -17,6 +17,7 @@ pub fn build(b: *std.Build) void { const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests); + tests_run.setCwd(b.path(".")); tests_run.has_side_effects = true; test_step.dependOn(&tests_run.step); }