feat(makefile): support more detailed test output

Add a command to show a prettier test output so you can see what's going
on easier.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2025-08-12 09:47:28 -05:00
parent 41de8964f1
commit 8fe76317fb

View File

@ -23,5 +23,9 @@ test:
meson test -C build --no-rebuild --verbose --suite waybar meson test -C build --no-rebuild --verbose --suite waybar
.PHONY: test .PHONY: test
test-detailed:
meson test -C build --verbose --print-errorlogs --test-args='--reporter console -s'
.PHONY: test-detailed
clean: clean:
rm -rf build rm -rf build