This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/check.sh
2022-12-25 18:27:22 +04:00

62 lines
1 KiB
Bash
Executable file

#!/usr/bin/env bash
failed=''
title () {
RESET='\033[0m'
COLOR='\033[1;36m'
echo
echo -e "$COLOR[#] $1$RESET"
}
error_msg () {
RESET='\033[0m'
OK='\033[1;32m'
ERR='\033[1;31m'
if (( $1 )); then
failed+="$2, "
echo -e "$ERR[X] Found errors$RESET"
else
echo -e "$OK[V] Passed successfully$RESET"
fi
}
display_failed() {
RESET='\033[0m'
FAILED='\033[1;33m'
SUCCESS='\033[1;32m'
if [[ $failed != '' ]]; then
joined=`echo -n "$failed" | sed 's/, $//'`
echo -e "$FAILED[!] View output of: $joined$RESET"
else
echo -e "$SUCCESS[V] All checks were passed successfully$RESET"
fi
}
title 'Checking needed modules...'
python3 -m pip install pycodestyle mypy pylint
title 'Running unit tests...'
python3 -m unittest discover -v ./tests
error_msg $? 'unittest'
title 'Running pep8 checker...'
python3 -m pycodestyle .
error_msg $? 'pep8'
title 'Running mypy checker...'
python3 -m mypy .
error_msg $? 'mypy'
title 'Running pylint checker...'
python3 -m pylint ./python_aternos
error_msg $? 'pylint'
display_failed
echo