Skip to content

Commit fc55f0d

Browse files
committed
Increased timeout for lsp installation
1 parent 88cdc41 commit fc55f0d

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ jobs:
3333
run: make test-unit
3434
- name: Run Functional Tests
3535
run: make test-functional
36+
- name: debug
37+
if: always()
38+
run: sudo cat ~/.local/state/nvim/lsp.log

tests/lsp_init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ for _, lsp in ipairs(lsp_list) do
6363

6464
-- Wait for installation to complete with timeout
6565
local start_time = vim.loop.now()
66-
local timeout = 60000 -- in milliseconds
66+
local timeout = 120000 -- in milliseconds
6767

6868
while not installation_complete do
6969
vim.wait(1000) -- Check every second

0 commit comments

Comments
 (0)