From 21608788cbef30a3b3f92e477a8740ec7e3f829f Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 14 Jan 2026 11:59:17 +0000 Subject: [PATCH] CONTRIBUTING: mention nextest --- CONTRIBUTING.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0d21c987..e293be35 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,6 +75,20 @@ Make sure all tests are passing with: Some tests require `jq`. If `jq` is not detected, these tests will succeed without effectively testing anything. +#### `cargo nextest` + +Another popular test runner is [`nextest`](https://nexte.st/), which can be used through `cargo nextest`. + +The equivalent to the above `cargo test` command would be: + + $ cargo nextest run --workspace + +Note that `cargo nextest` does not include doc tests, however, we do not write doc tests. + +To run the test suite, use the command: + + $ just test-rust + ### Checking the docs If you make documentation changes, you may want to check whether there are any