소스 검색

test: extend integration timeout to 10m

We test with `-cpu 1,2,4` now, and it takes longer time.
Yicheng Qin 10 년 전
부모
커밋
768cb437bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test

+ 1 - 1
test

@@ -50,7 +50,7 @@ go test -timeout 3m ${COVER} $@ ${NO_RACE_TEST} -cpu 1,2,4
 
 if [ -n "$INTEGRATION" ]; then
 	echo "Running integration tests..."
-	go test -timeout 3m $@ ${REPO_PATH}/integration -v -cpu 1,2,4
+	go test -timeout 10m $@ ${REPO_PATH}/integration -v -cpu 1,2,4
 fi
 
 echo "Checking gofmt..."