Skip to content

Commit fcab946

Browse files
committed
test: reduce startup time failure rates
1 parent 5813057 commit fcab946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/commands/test_startup_time.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import subprocess # noqa: S404, RUF100
22
import time
33

4-
from tests.conftest import is_arm, is_mac
4+
from tests.conftest import is_mac
55

66

7-
MAXIMUM_STARTUP_TIME = 0.7 if is_mac() and not is_arm(True) else 0.5
7+
MAXIMUM_STARTUP_TIME = 0.6 if is_mac() else 0.5
88

99

1010
def test_startup_time():

0 commit comments

Comments
 (0)