Skip to content

Commit bea85d4

Browse files
authored
[CI] Add go test flag '-v' for more clearly CI log (#871)
### Motivation Currently, the CI of pulsar-go-client is more and more prone to fail due to timeout. It's hard to find out which test case failed based on CI log now. Add go test flag '-v' will make the CI log more clearly to locate which test failed or timeout. ### Modifications Add go test flag '-v' in `run-ci.sh`
1 parent 60856f2 commit bea85d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ go build -o bin/pulsar-perf ./perf
3131

3232
scripts/pulsar-test-service-start.sh
3333

34-
go test -race -coverprofile=/tmp/coverage -timeout=20m ./...
34+
go test -race -coverprofile=/tmp/coverage -timeout=20m -v ./...
3535
go tool cover -html=/tmp/coverage -o coverage.html
3636

3737
scripts/pulsar-test-service-stop.sh

0 commit comments

Comments
 (0)