Skip to content

Commit 56d4caa

Browse files
committed
test(session-e2e): give start a 15s timeout
The detached daemon boot + agent venv + LLM connect takes longer than the shared 5s sessionE2ETimeout, which killed start on the ubuntu and windows CI runners (signal: killed / exit status 1). Bump start to 15s.
1 parent 24a1536 commit 56d4caa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/lk/session_e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func TestSessionE2E(t *testing.T) {
103103
})
104104

105105
// start: launches the detached daemon and returns once the agent is ready.
106-
startOut, err := run(sessionE2ETimeout, "agent", "session", "start", "--port", port, entrypoint)
106+
startOut, err := run(15*time.Second, "agent", "session", "start", "--port", port, entrypoint)
107107
require.NoError(t, err, "session start failed:\n%s", startOut)
108108
require.Contains(t, startOut, "Session started.", "start did not report readiness:\n%s", startOut)
109109

0 commit comments

Comments
 (0)