From 64f00286402f6135df5a0845166c731a4c7cef72 Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Fri, 31 Oct 2025 16:48:45 -0400 Subject: [PATCH] chore: increase test error output Signed-off-by: Richard Gebhardt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 749738e..f9b7ba0 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ test: @for dir in $(SUBDIRS); do \ if [ -f $$dir/pyproject.toml ]; then \ echo "Testing $$dir"; \ - cd $$dir && uv sync && uv run pytest && cd ../..; \ + cd $$dir && uv sync && uv run pytest -vv && cd ../..; \ fi \ done