Przeglądaj źródła

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.
Yicheng Qin 11 lat temu
rodzic
commit
fde7a7a10c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      test

+ 1 - 1
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..."