From 5a397917c0d29e78869d0673ea6db9c2ef47b031 Mon Sep 17 00:00:00 2001 From: Igor Morozov Date: Mon, 6 Mar 2023 11:54:16 +0400 Subject: [PATCH] docs(contributingmd): add run tests commands (#1129) * docs(contributingmd): add run tests commands * docs(contributingmd): add link to nextest website Co-authored-by: dennis zhuang --------- Co-authored-by: dennis zhuang --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8f2c2f7407..1f617de278 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,7 @@ GreptimeDB uses the [Apache 2.0 license](https://github.com/GreptimeTeam/greptim - To ensure that community is free and confident in its ability to use your contributions, please sign the Contributor License Agreement (CLA) which will be incorporated in the pull request process. - Make sure all your codes are formatted and follow the [coding style](https://pingcap.github.io/style-guide/rust/). -- Make sure all unit tests are passed. +- Make sure all unit tests are passed (using `cargo test --workspace` or [nextest](https://nexte.st/index.html) `cargo nextest run`). - Make sure all clippy warnings are fixed (you can check it locally by running `cargo clippy --workspace --all-targets -- -D warnings -D clippy::print_stdout -D clippy::print_stderr`). #### `pre-commit` Hooks