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 757adb6098
commit 17cd4a3137

View file

@ -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