fix example tests

This commit is contained in:
David Allemang
2024-11-11 12:03:37 -05:00
parent 4173229b20
commit 5ac1a9b7b9
6 changed files with 2511 additions and 1310 deletions

View File

@@ -38,7 +38,9 @@ pub fn build(b: *std.Build) void {
.optimize = optimize,
});
const run_example_tests = b.addRunArtifact(example_tests);
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_exe_unit_tests.step);
test_step.dependOn(&example_tests.step);
test_step.dependOn(&run_example_tests.step);
}