diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-09 14:58:17 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-09 14:58:21 +0100 |
commit | 836a2cfe3b5ba2761291564cbf412ca79f9a52a9 (patch) | |
tree | 59eb08c4de6b7a823971b94817803a8598ea61fd /run-tests | |
parent | c67d3b7e60b03ad52fe232b93b8867395dd8caa5 (diff) | |
download | ale-836a2cfe3b5ba2761291564cbf412ca79f9a52a9.zip |
Fix issues with running individual tests, and get the Vim tests to run on certain machines again
Diffstat (limited to 'run-tests')
-rwxr-xr-x | run-tests | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -45,6 +45,15 @@ while [ $# -ne 0 ]; do run_neovim_tests=0 run_vint=0 run_custom_checks=0 + shift + ;; + --no-vint) + run_vint=0 + shift + ;; + --no-custom-checks) + run_custom_checks=0 + shift ;; --) shift @@ -161,7 +170,7 @@ if ((run_vim_tests)); then echo set -o pipefail - docker run -a stderr "${DOCKER_FLAGS[@]}" \ + docker run -a stderr -e VADER_OUTPUT_FILE=/dev/stderr "${DOCKER_FLAGS[@]}" \ "/vim-build/bin/$vim" -u test/vimrc \ "+Vader! $tests" 2>&1 | filter-vader-output | color-vader-output || EXIT=$? set +o pipefail |