From fcab9460fbcadd2755c388c43ed24f787472b4e4 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 2 Jan 2026 16:58:10 +0100 Subject: [PATCH] test: reduce startup time failure rates --- tests/commands/test_startup_time.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/test_startup_time.py b/tests/commands/test_startup_time.py index 32b4f80fd..29c51b9bf 100644 --- a/tests/commands/test_startup_time.py +++ b/tests/commands/test_startup_time.py @@ -1,10 +1,10 @@ import subprocess # noqa: S404, RUF100 import time -from tests.conftest import is_arm, is_mac +from tests.conftest import is_mac -MAXIMUM_STARTUP_TIME = 0.7 if is_mac() and not is_arm(True) else 0.5 +MAXIMUM_STARTUP_TIME = 0.6 if is_mac() else 0.5 def test_startup_time():