fix health and hl groups

This commit is contained in:
Barrett Ruth 2025-10-03 09:34:25 -04:00
parent d35ed0450b
commit 5991670ef2
4 changed files with 22 additions and 13 deletions

View file

@ -34,11 +34,18 @@ local function check_required()
vim.health.info('Python virtual environment not set up (created on first scrape)')
end
local cap = utils.time_capability()
if cap.ok then
vim.health.ok('GNU time found: ' .. cap.path)
local time_cap = utils.time_capability()
if time_cap.ok then
vim.health.ok('GNU time found: ' .. time_cap.path)
else
vim.health.error('GNU time not found: ' .. (cap.reason or ''))
vim.health.error('GNU time not found: ' .. (time_cap.reason or ''))
end
local timeout_cap = utils.time_capability()
if timeout_cap.ok then
vim.health.ok('GNU timeout found: ' .. timeout_cap.path)
else
vim.health.error('GNU timeout not found: ' .. (timeout_cap.reason or ''))
end
end

View file

@ -93,7 +93,7 @@ local function parse_and_strip_time_v(output)
for line in tail:gmatch('[^\n]+') do
local kb = line:match('Maximum resident set size %(kbytes%):%s*(%d+)')
if kb then
peak_kb = tonumber(kb)
peak_kb = tonumber(kb) or 0
end
end

View file

@ -40,7 +40,7 @@ function M.get_status_info(ran_test_case)
return { text = 'WA', highlight_group = 'CpTestWA' }
end
return { text = 'N/A', highlight_group = 'CpTestPending' }
return { text = 'N/A', highlight_group = 'CpTestNA' }
end
local function format_exit_code(code)
@ -354,7 +354,7 @@ function M.get_highlight_groups()
CpTestTLE = { fg = '#f59e0b' },
CpTestMLE = { fg = '#f59e0b' },
CpTestRTE = { fg = '#8b5cf6' },
CpTestPending = { fg = '#6b7280' },
CpTestNA = { fg = '#6b7280' },
CpDiffRemoved = { fg = '#ef4444', bg = '#1f1f1f' },
CpDiffAdded = { fg = '#10b981', bg = '#1f1f1f' },
}