From a33b3f189dc6ff4c5fe04adb2860b6ec09d2d4fb Mon Sep 17 00:00:00 2001 From: w0rp Date: Fri, 8 Sep 2017 21:54:43 +0100 Subject: [PATCH] Switch the AppVeyor clone directory to C:\testplugin --- .appveyor.yml | 4 +++- test/vimrc | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b0d1ac1..f6e7d5d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,6 +2,8 @@ # Disabling building for AppVeyor. We are just testing things. build: false clone_depth: 10 +# Use the directory C:\testplugin so test directories will mostly work. +clone_folder: C:\testplugin # Cache the vim and vader directories between builds. cache: @@ -33,5 +35,5 @@ install: } test_script: - - cd C:\projects\ale + - cd C:\testplugin - 'C:\vim\vim\vim80\vim.exe -u test\vimrc "+Vader! test/test_path_uri.vader"' diff --git a/test/vimrc b/test/vimrc index a0b8c8d..c640e3e 100644 --- a/test/vimrc +++ b/test/vimrc @@ -6,7 +6,7 @@ let g:ale_set_lists_synchronously = 1 " Load builtin plugins " We need this because run_vim.sh sets -i NONE if has('win32') - set runtimepath=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,C:\vader,C:\projects\ale + set runtimepath=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,C:\vader,C:\testplugin else set runtimepath=/home/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,/testplugin,/vader endif