Add unit test running command at DEVELOPMENT.md (#7767)

Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>
pull/7727/head
Xiaofan 2021-09-13 09:44:02 +08:00 committed by GitHub
parent 619c4393f3
commit 3d6ec9c127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -146,6 +146,12 @@ Pull requests need to pass all unit tests. To run every unit test, use this comm
make unittest
```
To run single test case, for instance, run TestSearchTask in /internal/proxy directory, use
```shell
go test -v ./internal/proxy/ -test.run TestSearchTask
```
### E2E Tests
Milvus uses Python SDK to write test cases to verify the correctness of Milvus functions. Before run E2E tests, you need a running Milvus: