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

pre-push-tests.sh « scripts - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 562065f13f8147b6177314f88c81b1c9115638fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# exit when any command fails
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
echo "${GREEN}codespell: \t OK"
echo "${GREEN}ready to push"