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
This commit is contained in:
Hans-Christoph Steiner 2018-07-18 17:11:21 +02:00
parent 84dfd6b06a
commit 60ee69b8bd
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,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