From 894327e5d9e602b69ebde8974c7e406b70a70d7f Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Sat, 4 Apr 2026 03:59:05 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20print=20passing=20unit=20tests?= =?UTF-8?q?=20(#43902)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This removes from the output of `./mach test-unit` hundreds of lines like: ``` PASS [ 0.011s] style_tests str::test_str_join_empty ``` Signed-off-by: Simon Sapin --- .config/nextest.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index 6fed3a70fb7..1608789bcc9 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,7 @@ [profile.default] # Print a slow warning after period, terminate unit-test after 4x period. slow-timeout = { period = "5s", terminate-after = 4 } +status-level = "leak" [profile.ci] fail-fast = false