diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-22 21:08:32 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-22 21:08:32 +0100 |
commit | 47a8ebc8b9ae76ee2b23e388d30324b97e102eed (patch) | |
tree | 70908c6768e7b38d4ee92facfe4e647381970891 /run-tests | |
parent | 9d3bda4441a293eac47050428fee7fb4879547d7 (diff) | |
download | ale-47a8ebc8b9ae76ee2b23e388d30324b97e102eed.zip |
Prevent .swp files from causing the tests to hang in Vim 8
Diffstat (limited to 'run-tests')
-rwxr-xr-x | run-tests | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -82,6 +82,9 @@ if [ $# -ne 0 ]; then tests="$*" fi +# Delete .swp files in the test directory, which cause Vim 8 to hang. +find test -name '*.swp' -delete + docker images -q w0rp/ale | grep "^$CURRENT_IMAGE_ID" > /dev/null \ || docker pull "$IMAGE" |