From b8cf2805d8ac0b0f75945c2a1fea72193ca156ed Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Sat, 11 Jan 2020 17:41:55 +0100 Subject: [PATCH] Fix: typo --- src/dev/rust/testing.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 ```