From b1f7426bebecbd53ce97257fbc36d7d22ed99e82 Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Mon, 16 May 2022 15:42:31 +0100 Subject: [PATCH] ci: add pylint, but allow failure --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ac5ccbd..c02c0cc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,6 +36,15 @@ test:mypy: - pip install -r requirements-types.txt --quiet - mypy app +test:pylint: + script: + - cp config.yaml.example config.yaml + - apt update && apt install build-essential + - pip install -r requirements.txt --quiet + - pip install pylint --quiet + - pylint app + allow_failure: true + pages: stage: deploy script: