summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorjvoisin2018-07-09 01:12:59 +0200
committerjvoisin2018-07-09 01:22:08 +0200
commit22e3918f67b3b3517312406c70a1e71641afc7ae (patch)
treed01482b76826119302d2f5fb975d7397a3f6974e /.gitlab-ci.yml
parent080d6769ca22cd797d02d601c71f51d3eba6ee64 (diff)
Add pylint3 to the ci
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a5e005c..c14f4d1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,13 @@ bandit:
11 - apt-get -qqy install --no-install-recommends python3-bandit 11 - apt-get -qqy install --no-install-recommends python3-bandit
12 - bandit -r ./libmat2 --format txt --skip B101,B404,B603,B405,B314 12 - bandit -r ./libmat2 --format txt --skip B101,B404,B603,B405,B314
13 13
14pylint:
15 stage: linting
16 script:
17 - apt-get -qqy update
18 - apt-get -qqy install --no-install-recommends pylint3 python3-mutagen python3-gi-cairo gir1.2-poppler-0.18 gir1.2-gdkpixbuf-2.0
19 - pylint3 --extension-pkg-whitelist=cairo,gi ./libmat2
20
14pyflakes: 21pyflakes:
15 stage: linting 22 stage: linting
16 script: 23 script: