From 122be4f7bd542bb47996835c40d611cfbd9b6441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Cas=C3=ADa?= <31012661+rcasia@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:13:42 +0100 Subject: [PATCH 1/3] chore: some check to see the tests failing From 79138263859e64ad7ad294603a8884ae52650769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Cas=C3=ADa?= <31012661+rcasia@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:19:37 +0100 Subject: [PATCH 2/3] chore: remove parser installation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a7ee1a3..91c996f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ update: git submodule update --init --recursive install: clean update - nvim --headless -u tests/testrc.vim -c "lua require('nvim-treesitter.install').install('bash'):wait(300000)" -c "quit" + # nvim --headless -u tests/testrc.vim -c "lua require('nvim-treesitter.install').install('bash'):wait(300000)" -c "quit" clean: rm -rf dependencies From 216b3df8b528eceeab80e4718c0304a7b511db0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Cas=C3=ADa?= <31012661+rcasia@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:23:16 +0100 Subject: [PATCH 3/3] chore: random change --- lua/neotest-bash/core/file_checker.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/neotest-bash/core/file_checker.lua b/lua/neotest-bash/core/file_checker.lua index 24381da..474bdf2 100644 --- a/lua/neotest-bash/core/file_checker.lua +++ b/lua/neotest-bash/core/file_checker.lua @@ -4,6 +4,7 @@ FileChecker = {} ---@param file_path string ---@return boolean function FileChecker.isTestFile(file_path) + local a = 0 -- test files end with test.sh return file_path:match("test.sh$") end