Test reports when running via build.zig

Is there a way to get diagnostics like these

➜  aoc2024 git:(main) zig test src/2/main.zig
2/2 main.test.dampen...SKIP
1 passed; 1 skipped; 0 failed.

but when running tests via build.zig?

I have a project for aoc and its got tons of little exes and a test step for all of them at once and id love it if i can just see where i skipped tests or so. At the moment they just either silently skip and pass or loudly fail.

zig build test --summary new