Add verbose to test
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 9m55s
Unit Tests / unit-tests (pull_request) Successful in 10m10s

This commit is contained in:
Tanishq Dubey 2025-05-17 13:23:09 -04:00
parent e4a19a6bb8
commit dad5586339
No known key found for this signature in database
GPG Key ID: CFC1931B84DFC3F9

View File

@ -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: