From fde7a7a10cb5cde7dc36415f8b57d0c7bab4aa33 Mon Sep 17 00:00:00 2001 From: Yicheng Qin Date: Wed, 27 May 2015 09:57:02 -0700 Subject: [PATCH] test: run integration tests in verbose mode Travis doesn't print out the final result of integration tests sometimes, and verbose mode helps us debug. --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index c59e2ab45..183cd739d 100755 --- a/test +++ b/test @@ -50,7 +50,7 @@ go test -timeout 3m ${COVER} $@ ${NO_RACE_TEST} if [ -n "$INTEGRATION" ]; then echo "Running integration tests..." - go test -timeout 3m $@ ${REPO_PATH}/integration + go test -timeout 3m $@ ${REPO_PATH}/integration -v fi echo "Checking gofmt..."