aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/install.sh1
-rwxr-xr-xci/run_lint.sh8
2 files changed, 4 insertions, 5 deletions
diff --git a/ci/install.sh b/ci/install.sh
index afe55bbff5..134eb7968d 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -4,6 +4,7 @@ set -e
set -o pipefail
if [[ "${CI_TARGET}" == lint ]]; then
+ python -m pip -q install --user --upgrade flake8
exit
fi
diff --git a/ci/run_lint.sh b/ci/run_lint.sh
index 54e76e10da..88af163e80 100755
--- a/ci/run_lint.sh
+++ b/ci/run_lint.sh
@@ -9,26 +9,24 @@ source "${CI_DIR}/common/build.sh"
source "${CI_DIR}/common/suite.sh"
enter_suite 'clint'
-
run_test 'make clint-full' clint
-
exit_suite --continue
enter_suite 'lualint'
-
run_test 'make lualint' lualint
+exit_suite --continue
+enter_suite 'pylint'
+run_test 'make pylint' pylint
exit_suite --continue
enter_suite single-includes
-
CLICOLOR_FORCE=1 run_test_wd \
--allow-hang \
10s \
'make check-single-includes' \
'csi_clean' \
single-includes
-
exit_suite --continue
end_tests