Add a pylint check on plugins

This commit is contained in:
mathieui 2018-08-09 00:56:59 +02:00
parent 24b1a1fe50
commit 05d1800f81
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -87,6 +87,18 @@ pylint-latest:
- python3 setup.py install
- pylint -E poezio
pylint-plugins:
stage: test
image: python:3
allow_failure: true
script:
- apt-get update && apt-get install -y libidn11-dev
- pip3 install pylint pyasn1-modules cffi --upgrade
- pip3 install -r requirements.txt
- pip3 install -r requirements-plugins.txt
- python3 setup.py install
- pylint -E plugins
formatting-check:
stage: test
image: python:3