neovim/ci/run_lint.sh

33 lines
583 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
set -o pipefail
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${CI_DIR}/common/build.sh"
source "${CI_DIR}/common/suite.sh"
enter_suite 'clint'
2018-03-09 20:55:10 +01:00
run_test 'make clint-full' clint
exit_suite --continue
2017-05-25 15:50:06 +02:00
enter_suite 'lualint'
2018-03-09 20:55:10 +01:00
run_test 'make lualint' lualint
exit_suite --continue
2017-05-25 15:50:06 +02:00
enter_suite 'pylint'
run_test 'make pylint' pylint
2017-05-25 15:50:06 +02:00
exit_suite --continue
enter_suite single-includes
2017-04-04 03:02:54 +02:00
CLICOLOR_FORCE=1 run_test_wd \
--allow-hang \
10s \
2018-03-09 20:55:10 +01:00
'make check-single-includes' \
2017-04-04 03:02:54 +02:00
'csi_clean' \
single-includes
exit_suite --continue
end_tests