fix(ci): lua col test

This commit is contained in:
Barrett Ruth 2025-09-19 21:12:26 -04:00
parent ddff996ee2
commit a7cd58ad90
2 changed files with 2 additions and 2 deletions

View file

@ -114,4 +114,4 @@ jobs:
- name: Install dependencies with mypy
run: uv sync --dev
- name: Type check Python files with mypy
run: uv run mypy scrapers/ tests/scrapers/
run: cd scrapers && PYTHONPATH=.. uv run mypy . ../tests/scrapers/

View file

@ -78,7 +78,7 @@ describe('cp.test_render', function()
local result = test_render.render_test_list(test_state)
local found_current = false
for _, line in ipairs(result) do
if line:match('│.*>2.*│') then
if line:match('│.*> 2.*│') then
found_current = true
break
end