diff options
author | mathieui <mathieui@mathieui.net> | 2018-08-09 00:56:59 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-08-09 00:57:16 +0200 |
commit | 05d1800f81ba2e16002751864f1704592efadca3 (patch) | |
tree | bc968d34b2fd42cafa5d02b9d52df316b8f0deb4 | |
parent | 24b1a1fe50a72b192f01c7ee3bd32d636e81e1be (diff) | |
download | poezio-05d1800f81ba2e16002751864f1704592efadca3.tar.gz poezio-05d1800f81ba2e16002751864f1704592efadca3.tar.bz2 poezio-05d1800f81ba2e16002751864f1704592efadca3.tar.xz poezio-05d1800f81ba2e16002751864f1704592efadca3.zip |
Add a pylint check on plugins
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e3595f88..75d09c96 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 |