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:
authorPhilipp Hörist <philipp@hoerist.com>2022-12-05 01:50:58 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-12-05 02:00:21 +0300
commit9e9101a738b29a7e246ada1ba72b9dfaa207e385 (patch)
tree005b627ec5e7787d25cca1c2d2862ce8f08279f7 /.gitlab-ci.yml
parent6440fd6033d8f0368dfadadc0d2e8155a52c6336 (diff)
ci: Repace pylint/flake8 with ruff
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 3 insertions, 12 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 520a9ff6c..033869ff2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,23 +33,14 @@ test-pyright:
- $(npm bin)/pyright
interruptible: true
-test-flake8:
+test-ruff:
stage: test
rules:
- changes:
- "**/*.py"
script:
- - flake8
- interruptible: true
-
-test-pylint:
- stage: test
- rules:
- - changes:
- - "**/*.py"
- script:
- - pip3 install -I git+https://dev.gajim.org/gajim/python-nbxmpp.git
- - .ci/pylint.sh --jobs=2 gajim
+ - pip3 install ruff
+ - ruff .
interruptible: true
test-unittest: