mirror of https://github.com/milvus-io/milvus.git
Enlarge integration test timeout (#25283)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/25287/head
parent
4fdbc5af89
commit
549c4a0e1b
|
@ -130,6 +130,7 @@ class Json {
|
|||
return doc().at_pointer(pointer).error() == simdjson::SUCCESS;
|
||||
}
|
||||
|
||||
// construct JSON pointer with provided path
|
||||
static std::string
|
||||
pointer(std::vector<std::string> nested_path) {
|
||||
std::for_each(
|
||||
|
|
|
@ -34,7 +34,7 @@ fi
|
|||
|
||||
for d in $(go list ./tests/integration/...); do
|
||||
echo "$d"
|
||||
go test -race ${APPLE_SILICON_FLAG} -v -coverpkg=./... -coverprofile=profile.out -covermode=atomic "$d"
|
||||
go test -race ${APPLE_SILICON_FLAG} -v -coverpkg=./... -coverprofile=profile.out -covermode=atomic "$d" -timeout=20m
|
||||
if [ -f profile.out ]; then
|
||||
grep -v kafka profile.out | grep -v planparserv2/generated | grep -v mocks | sed '1d' >> ${FILE_COVERAGE_INFO}
|
||||
rm profile.out
|
||||
|
|
Loading…
Reference in New Issue