Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-04-02 17:22:48 +0300
committerlovetox <philipp@hoerist.com>2022-04-02 17:24:58 +0300
commitf2189e134dd07398c445e5c88aa07625dacf59e0 (patch)
tree6597c062431449517a0f34bb0ffb5df2f768328b /.gitlab-ci.yml
parent5f0e1da08f2809f1197c543deba0a89a68152c75 (diff)
ci: Move pylint check into own script
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml21
1 files changed, 1 insertions, 20 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e64f6d..ffca191 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,7 +7,7 @@ stages:
run-test:
stage: test
script:
- - python3 -m pylint nbxmpp --disable=C0103,C0201,C0209,C0301,C0326,C0330,W0201,W0212,W0221,W0231,W0233,W0621,W0622,W0707,R0201,R0801,E1101,E1135
+ - python3 .ci/pylint-test.py
- coverage run --source=nbxmpp -m unittest discover -v
- coverage report -mi
- coverage xml -i
@@ -16,25 +16,6 @@ run-test:
reports:
cobertura: coverage.xml
-# C0103 invalid-name
-# C0201 consider-iterating-dictionary
-# C0209 consider-using-f-string
-# C0301 line-too-long
-# C0326 bad-whitespace
-# C0330 bad-continuation
-# W0201 attribute-defined-outside-init
-# W0212 protected-access
-# W0221 arguments-differ
-# W0231 super-init-not-called
-# W0233 non-parent-init-called
-# W0621 redefined-outer-name
-# W0622 redefined-builtin
-# W0707 raise-missing-from
-# R0201 no-self-use
-# R0801 duplicate-code
-# E1101 no-member
-# E1135 unsupported-membership-test
-
run-build:
stage: build
script: