summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-11 18:08:05 -0600
committermo khan <mo@mokhan.ca>2025-05-11 21:21:38 -0600
commit371b8631aa32bc3ef906cf25eaa1fece0b2523d9 (patch)
treecc17d5fef7fa9c13d75c2780d7695c8adeb81356
parenta8832943085f9e46ea2e0b238fabdd75eaf89828 (diff)
chore: use verbose test output
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c3b2307..8e9d6a8 100644
--- a/Makefile
+++ b/Makefile
@@ -21,10 +21,10 @@ setup:
build: sparkled
test-unit:
- @go test -shuffle=on ./...
+ @go test -v -shuffle=on ./...
test-integration: build-image
- @IMAGE_TAG=$(IMAGE_TAG) go test -tags=integration ./test/integration/...
+ @IMAGE_TAG=$(IMAGE_TAG) go test -v -tags=integration ./test/integration/...
test: clean test-unit test-integration