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 /scripts
parent6440fd6033d8f0368dfadadc0d2e8155a52c6336 (diff)
ci: Repace pylint/flake8 with ruff
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pre-push-tests.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/pre-push-tests.sh b/scripts/pre-push-tests.sh
index 562065f13..3b24908f7 100755
--- a/scripts/pre-push-tests.sh
+++ b/scripts/pre-push-tests.sh
@@ -6,10 +6,10 @@ set -e
GREEN='\033[0;32m'
-./scripts/dev/pylint-ci.sh gajim
-echo "${GREEN}pylint: \t OK"
-mypy gajim
-echo "${GREEN}mypy: \t\t OK"
-codespell -I codespell.conf --skip="*__pycache__*,gajim/data/icons,gajim/data/sounds,gajim/data/emoticons" gajim
+pyright
+echo "${GREEN}pyright: \t OK"
+ruff .
+echo "${GREEN}ruff: \t\t OK"
+codespell gajim
echo "${GREEN}codespell: \t OK"
echo "${GREEN}ready to push"