diff --git a/src/dev/rust/testing.md b/src/dev/rust/testing.md index e1fcdd3..a051617 100644 --- a/src/dev/rust/testing.md +++ b/src/dev/rust/testing.md @@ -5,5 +5,11 @@ To see stdout when using cargo run (kudos CobaltVelvet) ```shell -cargo run -- --nocapture +cargo test -- --nocapture +``` + +## Run all the tests, even if one of them fail + +```shell +cargo test -- --no-fail-fast ```