diff options
| author | Daniel Hahler <git@thequod.de> | 2019-07-30 07:32:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-30 07:32:47 +0200 |
| commit | 35ec60f73a5d9f1ad9393bb1f645c624e67fdb26 (patch) | |
| tree | cdab39bdae9398dab95927303b179250d644dd03 /ci | |
| parent | bae02eb3968be1c9677283d030fbbe6dd02cb180 (diff) | |
| parent | d651710de1e5627d602d9ca05a902e198d031571 (diff) | |
| download | rneovim-35ec60f73a5d9f1ad9393bb1f645c624e67fdb26.tar.gz rneovim-35ec60f73a5d9f1ad9393bb1f645c624e67fdb26.tar.bz2 rneovim-35ec60f73a5d9f1ad9393bb1f645c624e67fdb26.zip | |
Merge pull request #10648 from blueyed/autopep8
ci: py: flake8 fixes
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/install.sh | 1 | ||||
| -rwxr-xr-x | ci/run_lint.sh | 8 |
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 |