diff --git a/build.zig b/build.zig index 186301d6b2622e067bdb6b009725afcf3134faf6..0fa2cca104dd81c51f81ae47d61b593719ef2e2b 100644 --- a/build.zig +++ b/build.zig @@ -26,6 +26,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); }