2020-10-30 16:25:06 +08:00
#!/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
2021-01-12 18:03:24 +08:00
ROOT_DIR = " $( cd -P " $( dirname " $SOURCE " ) /.. " && pwd ) "
2020-10-30 16:25:06 +08:00
# ignore Minio,S3 unittes
2021-01-12 18:03:24 +08:00
MILVUS_DIR = " ${ ROOT_DIR } /internal/ "
2020-10-30 16:25:06 +08:00
echo $MILVUS_DIR
2021-01-12 18:03:24 +08:00
go test -race -cover " ${ MILVUS_DIR } /kv/... " -failfast
2021-01-26 13:41:41 +08:00
# TODO: remove to distributed
#go test -race -cover "${MILVUS_DIR}/proxynode/..." -failfast
2021-01-29 17:08:31 +08:00
go test -race -cover " ${ MILVUS_DIR } /datanode/... " -failfast
2021-01-29 09:27:26 +08:00
#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
2021-01-29 15:22:24 +08:00
go test -race -cover " ${ MILVUS_DIR } /querynode/... " -failfast
2021-01-29 09:27:26 +08:00
#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
2021-01-23 17:56:57 +08:00
go test -race -cover -v " ${ MILVUS_DIR } /masterservice " " ${ MILVUS_DIR } /distributed/masterservice " -failfast
2021-01-12 18:03:24 +08:00
#go test -race -cover "${MILVUS_DIR}/kv/..." "${MILVUS_DIR}/msgstream/..." "${MILVUS_DIR}/master/..." "${MILVUS_DIR}/querynode/..." -failfast
2021-01-29 17:08:31 +08:00
go test -race -cover " ${ MILVUS_DIR } /dataservice/... " -failfast