in my build.zig i set up a test step and then make running my libraries unit tests. something like
const test_step = b.step("test", "Run unit tests");
const lib_unit_tests = b.addTest(.{
.root_source_file = .{ .path = "src/mylib.zig" },
.target = target,
.optimize = optimize,
});
const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests);
test_step.dependOn(&run_lib_unit_tests.step);
// and then add the executable's tests in a similar way.
this is all fine and good, but i have no clue how to run test_step from the zig build cli. and if that isn't possible (it doesn't seem so?)... is there any point to setting things up like this?