From 17cd4a31372e350cc90ce116c7c89d9f8618ab8b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 18 Jul 2018 17:11:21 +0200 Subject: [PATCH] gitlab-ci: pylint<2.0 workaround to avoid typed-ast's gcc requirement To keep those tests light and small, no gcc please! * https://gitlab.com/eighthave/fdroidserver/-/jobs/82274815 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca9f3873..05bf6b88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -128,7 +128,7 @@ lint_format_safety_checks: script: - apk add --no-cache bash dash ca-certificates python3 - python3 -m ensurepip - - pip3 install pycodestyle pyflakes pylint safety + - pip3 install pycodestyle pyflakes 'pylint<2.0' safety - export EXITVALUE=0 - ./hooks/pre-commit || export EXITVALUE=1 - safety check --full-report || export EXITVALUE=1