mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 20:15:10 +08:00
20 lines
280 B
Bash
Executable file
Vendored
20 lines
280 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
|
|
log() {
|
|
tput setf 6
|
|
echo "Running $1..."
|
|
tput sgr0
|
|
}
|
|
# Linter for our code
|
|
./scripts/generate-locales
|
|
|
|
log flake8
|
|
flake8
|
|
pep_ret=$?
|
|
exit $pep_ret
|
|
|
|
log pylint
|
|
pylint --rcfile=.pylintrc weblate openshift *.py
|
|
pylint_ret=$?
|
|
|
|
exit $(($pep_ret + $pyflake8_ret))
|