CONTRIBUTING: mention nextest
This commit is contained in:
parent
87347bdfa6
commit
21608788cb
|
|
@ -75,6 +75,20 @@ Make sure all tests are passing with:
|
||||||
Some tests require `jq`. If `jq` is not detected, these tests will succeed
|
Some tests require `jq`. If `jq` is not detected, these tests will succeed
|
||||||
without effectively testing anything.
|
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
|
### Checking the docs
|
||||||
|
|
||||||
If you make documentation changes, you may want to check whether there are any
|
If you make documentation changes, you may want to check whether there are any
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue