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:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pre-push-tests.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/pre-push-tests.sh b/scripts/pre-push-tests.sh
index 3b24908f7..47352b0e5 100755
--- a/scripts/pre-push-tests.sh
+++ b/scripts/pre-push-tests.sh
@@ -6,10 +6,13 @@ set -e
GREEN='\033[0;32m'
-pyright
-echo "${GREEN}pyright: \t OK"
ruff .
echo "${GREEN}ruff: \t\t OK"
+
codespell gajim
echo "${GREEN}codespell: \t OK"
+
+pyright
+echo "${GREEN}pyright: \t OK"
+
echo "${GREEN}ready to push"