mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
c6a6b1436c
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
27 lines
1.3 KiB
Bash
Executable File
27 lines
1.3 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}/kv/..." -failfast
|
|
# TODO: remove to distributed
|
|
#go test -race -cover "${MILVUS_DIR}/proxynode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/writenode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/datanode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/master/..." -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 -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
|