Adding useful commands to documentation #3991
Labels
A-docs
Area: affects documentation
C-enhancement
Category: a PR with an enhancement or an issue tracking an accepted enhancement
I used the commands below when enabling more tests in Tokio. We can consider adding these commands to README as they could be useful to others as well.
cargo miri nextest run -- no-fail-fast
can be used.# if cfg!(miri) { return }
will allow Miri to skip the test while still executing it normally withcargo test
.The text was updated successfully, but these errors were encountered: