diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a4f56877..42b02c1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,6 +77,19 @@ pytest-latest: - python3 setup.py install - py.test -v test/ +pylint-latest: + stage: test + image: python:3 + script: + - apt-get update && apt-get install -y libidn11-dev + - git clone git://git.louiz.org/slixmpp + - pip3 install pylint pyasn1-modules cffi --upgrade + - cd slixmpp + - python3 setup.py install + - cd .. + - python3 setup.py install + - pylint -E poezio + pylint-plugins: stage: test image: python:3