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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-06-14 23:05:34 +0300
committerlovetox <philipp@hoerist.com>2022-06-14 23:08:14 +0300
commita0a1ebe4fb30018000c9a3224194d195c42ed9ce (patch)
tree13a4a816fac701fa5440a0e75725747f66c8e652 /.gitlab-ci.yml
parent2ae59851b0d071b0d0936615235e5a919f7ad544 (diff)
ci: Add flake8 ci test
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a466e15c0..8fabd4649 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,6 +33,16 @@ test-pyright:
- $(npm bin)/pyright
interruptible: true
+test-flake8:
+ stage: test
+ allow_failure: true
+ rules:
+ - changes:
+ - "**/*.py"
+ script:
+ - flake8
+ interruptible: true
+
test-pylint:
stage: test
rules: