summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-12 17:37:24 -0600
committermo khan <mo@mokhan.ca>2025-05-12 17:37:24 -0600
commitef2537d90e61227adbaa913e67b3d9bde70425ab (patch)
treea11b9a9ba3e8aad01e9bdcb3f66e9b3a1378703a /Makefile
parent1ea0b0b316703cebb6f72b4499e2c16647064f27 (diff)
chore: use verbose output for integration tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01d6ac4..9c43fff 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ test-unit:
@go test -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