[skip ci]Make title clearer in contributing (#9430)

Signed-off-by: Yang Xuan <xuan.yang@zilliz.com>
pull/9436/head
XuanYang-cn 2021-10-07 23:52:43 +08:00 committed by GitHub
parent a1f9e46e44
commit 05bda0752f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@ As for everything else in the project, the contributions to Milvus are governed
- [Golang coding style](#golang-coding-style)
- [C++ coding style](#c-coding-style)
- [Run unit test with code coverage](#run-unit-test-with-code-coverage)
- [Golang](#golang)
- [C++](#c)
- [Golang](#run-golang-unit-tests)
- [C++](#run-c-unit-tests)
- [Commits and PRs](#commits-and-prs)
## What contributions can you make?
@ -154,7 +154,7 @@ $ make cppcheck
## Run unit test with code coverage
Before submitting your Pull Request, make sure you have run unit test, and your code coverage rate is >= 90%.
### Golang
### Run golang unit tests
You can run all the Golang unit tests using make.
```shell
@ -178,7 +178,7 @@ $ go test ./internale/datanode -run SegmentReplica/segmentFlushed
ok github.com/milvus-io/milvus/internal/datanode 0.019s
```
### C++
### Run C++ unit tests
Install lcov
```shell
$ sudo apt-get install lcov