We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26d49e2 commit c02e047Copy full SHA for c02e047
build.zig
@@ -116,6 +116,12 @@ pub fn build(b: *std.Build) void {
116
const run_builtins_tests = b.addRunArtifact(builtins_tests);
117
builtins_test_step.dependOn(&run_builtins_tests.step);
118
test_step.dependOn(&run_builtins_tests.step);
119
+
120
+ // Add success message after all tests complete
121
+ const tests_passed_step = b.addSystemCommand(&.{ "echo", "All tests passed!" });
122
+ tests_passed_step.step.dependOn(&run_tests.step);
123
+ tests_passed_step.step.dependOn(&run_builtins_tests.step);
124
+ test_step.dependOn(&tests_passed_step.step);
125
}
126
127
// Fmt zig code.
0 commit comments