From db9eadaf5511a092b1c3772888d673a48d3838cc Mon Sep 17 00:00:00 2001 From: Francis Belanger Date: Mon, 27 Jul 2026 08:56:34 -0400 Subject: [PATCH] fix(tests): unset VIM/VIMRUNTIME to avoid loading wrong runtime --- run_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index f185e996..f4f8887b 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -4,6 +4,9 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "$SCRIPT_DIR" || exit 1 +# Do not load a runtime configured for another Neovim binary. +unset VIM VIMRUNTIME + # Colors GREEN='\033[0;32m' RED='\033[0;31m'