summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-11 20:23:35 -0600
committermo khan <mo@mokhan.ca>2025-05-11 21:22:02 -0600
commit3af897756d68a8bcac782369fd33f73a8a33c9c3 (patch)
tree541522096b7f47d57b12831fe5400a22407841a4 /Makefile
parent3422ba64f7d39d515145f2fabce2e03151502ef8 (diff)
chore: disable verbose logs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e9d6a8..c3b2307 100644
--- a/Makefile
+++ b/Makefile
@@ -21,10 +21,10 @@ setup:
build: sparkled
test-unit:
- @go test -v -shuffle=on ./...
+ @go test -shuffle=on ./...
test-integration: build-image
- @IMAGE_TAG=$(IMAGE_TAG) go test -v -tags=integration ./test/integration/...
+ @IMAGE_TAG=$(IMAGE_TAG) go test -tags=integration ./test/integration/...
test: clean test-unit test-integration