mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
ccc0130bb4
Add exclusive parameter. Issue #5174 Signed-off-by: godchen <qingxiang.chen@zilliz.com>
32 lines
1.6 KiB
Bash
Executable File
32 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
SOURCE="$(readlink "$SOURCE")"
|
|
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
|
done
|
|
ROOT_DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
|
|
|
# ignore Minio,S3 unittes
|
|
MILVUS_DIR="${ROOT_DIR}/internal/"
|
|
echo $MILVUS_DIR
|
|
|
|
go test -race -cover "${MILVUS_DIR}/util/sessionutil/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/kv/..." "${MILVUS_DIR}/tso/..." "${MILVUS_DIR}/allocator/..." -failfast
|
|
# TODO: remove to distributed
|
|
#go test -race -cover "${MILVUS_DIR}/proxynode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/datanode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/indexnode/..." -failfast
|
|
#go test -race -cover "${MILVUS_DIR}/msgstream/..." "${MILVUS_DIR}/querynode/..." "${MILVUS_DIR}/storage" "${MILVUS_DIR}/util/..." -failfast
|
|
go test -cover "${MILVUS_DIR}/querynode/..." -failfast
|
|
#go test -race -cover "${MILVUS_DIR}/msgstream/..." "${MILVUS_DIR}/storage" "${MILVUS_DIR}/util/..." -failfast
|
|
#go test -race -cover "${MILVUS_DIR}/msgstream/..." "${MILVUS_DIR}/util/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/msgstream/..." -failfast
|
|
|
|
go test -race -cover -v "${MILVUS_DIR}/masterservice" "${MILVUS_DIR}/distributed/masterservice" -failfast
|
|
#go test -race -cover "${MILVUS_DIR}/kv/..." "${MILVUS_DIR}/msgstream/..." "${MILVUS_DIR}/master/..." "${MILVUS_DIR}/querynode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/dataservice/..." -failfast
|