From ae9b09284357eb33536eba7cdca34e8a3ea1bf93 Mon Sep 17 00:00:00 2001 From: Carlos B Date: Wed, 4 Oct 2023 12:00:18 +0200 Subject: [PATCH] Updated CONTRIBUTING.md with correct test command (#2150) * Updated CONTRIBUTING.md with correct test command Signed-off-by: carlosb1 * Changed test command --------- Signed-off-by: carlosb1 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8898a7c1..70e7cd7f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -70,7 +70,7 @@ follow the conventions of [Keep A CHANGELOG][kacl]. ## Testing -nix has a test suite that you can run with `cargo test`. Ideally, we'd like pull +nix has a test suite that you can run with `cargo test --all-features`. Ideally, we'd like pull requests to include tests where they make sense. For example, when fixing a bug, add a test that would have failed without the fix.