diff --git a/Makefile b/Makefile index 528b5cf..d4178c1 100644 --- a/Makefile +++ b/Makefile @@ -18,12 +18,12 @@ clean: # Run all tests test: generate @echo "Running all tests..." - @go test -count=1 ./... + @go test -v -count=1 ./... --coverprofile=coverage.out # Run unit tests only (faster, no integration tests) test-unit: @echo "Running unit tests..." - @go test -v -count=1 -short ./... + @go test -v -count=1 ./... # Run integration tests only test-integration: