From 77f7fab525c607d42d437fc492a63e8170b8cd86 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Thu, 9 Mar 2017 09:00:46 -0800 Subject: [PATCH] Tweak testing commands. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2e36f079..070f487f 100644 --- a/README.md +++ b/README.md @@ -125,11 +125,12 @@ cargo build To run tests use: ```` -# Run tests for the core code (src/) -cargo test +# Run tests for everything. +cargo test --all -# Run tests for the query-parser folder -cargo test -p mentat_query_parser +# Run tests for just the query-parser folder (specify the crate, not the folder), +# printing debug output. +cargo test -p mentat_query_parser -- --nocapture ```` To start the server use: