diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/main.rs b/cli/main.rs index 16b2df0e7..f69772437 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1234,7 +1234,7 @@ async fn test_command( tools::test_runner::is_supported, )?; - let failed = test_runner::run_tests( + test_runner::run_tests( program_state.clone(), permissions, lib, @@ -1249,10 +1249,6 @@ async fn test_command( concurrent_jobs, ) .await?; - - if failed { - std::process::exit(1); - } } Ok(()) |