From 5d4dae6e4a021df8464e06bd8215e0ec0df52485 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 29 Oct 2024 13:46:18 -0600 Subject: [PATCH 1/2] Add Testing section to README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 696e4cadd..bf239828c 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,7 @@ at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. + +### Testing + +Use `cargo test` to test the code in this repository. From 16fddd8145838d4261424799917948298992d2f1 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 29 Oct 2024 13:48:24 -0600 Subject: [PATCH 2/2] Be explicit about merge testing requirements. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf239828c..6b134e82b 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ be dual licensed as above, without any additional terms or conditions. ### Testing -Use `cargo test` to test the code in this repository. +Use `cargo test --release --all-features` to test the code in this repository before merging.