From bc00aec21cbdc6b416b2463b623d59df9089f4a2 Mon Sep 17 00:00:00 2001 From: altermo <107814000+altermo@users.noreply.github.com> Date: Fri, 20 Mar 2026 22:42:27 +0100 Subject: [PATCH] test(treesitter): skip unreliable select test #38391 The test sometimes(around 1/30) fails on PUC-lua. --- test/functional/treesitter/select_spec.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functional/treesitter/select_spec.lua b/test/functional/treesitter/select_spec.lua index 25fc7ad657..5719f36973 100644 --- a/test/functional/treesitter/select_spec.lua +++ b/test/functional/treesitter/select_spec.lua @@ -81,6 +81,10 @@ describe('treesitter incremental-selection', function() treeselect('select_next', 3) eq('4', get_selected()) + if t.skip(jit == nil, 'sometimes fails on PUC lua') then + return + end + treeselect('select_prev', 2) eq('2', get_selected())