diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-07-10 07:51:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 07:51:30 -0700 |
commit | 67c9937e6658c2be9b54cd95132a1055756e433b (patch) | |
tree | 731841a9b54b56f994e80a978b826866bde2a511 /cli/main.rs | |
parent | b3f22d3fdd248e333bb091395f4be3f48dc24733 (diff) |
Revert "feat(cli/tools/test_runner): add terse reporter (#11156)" (#11352)
it's another flag to understand, more code, and isn't something that anyone really needs.
This reverts commit 9d57a4aaeb18461bbeeea30fc8ab8804357185c1.
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/main.rs b/cli/main.rs index df6629391..93bae0220 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -988,7 +988,6 @@ async fn test_command( doc: bool, fail_fast: bool, quiet: bool, - terse: bool, allow_none: bool, filter: Option<String>, shuffle: Option<u64>, @@ -1206,7 +1205,6 @@ async fn test_command( no_run, fail_fast, quiet, - terse, true, filter.clone(), shuffle, @@ -1245,7 +1243,6 @@ async fn test_command( no_run, fail_fast, quiet, - terse, allow_none, filter, shuffle, @@ -1353,7 +1350,6 @@ fn get_subcommand( doc, fail_fast, quiet, - terse, include, allow_none, filter, @@ -1366,7 +1362,6 @@ fn get_subcommand( doc, fail_fast, quiet, - terse, allow_none, filter, shuffle, |