forked from the-ethan-hunt/B.E.N.J.I.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylinter.sh
executable file
·55 lines (44 loc) · 1.22 KB
/
pylinter.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
directories="linux MacOS windows"
pass=0
fail=0
function prepare_venv() {
VIRTUALENV=$(which venv)
if [ $? -eq 1 ]; then
VIRTUALENV=$(which venv-3)
fi
${VIRTUALENV} python3 -m venv mybenjienv && source mybenjienv/bin/activate && python3 "$(which pip3)" install pycodestyle
}
echo "----------------------------------------------------"
echo "Running Python Linter against following directories:"
echo "$directories"
echo "----------------------------------------------------"
echo
[ "$NOVENV" == "1" ] || prepare_venv || exit 1
# checks for the whole directories
for directory in $directories
do
files=$(find "$directory" -path "$directory/venv" -prune -o -name '*.py' -print)
for source in $files
do
echo "$source"
pycodestyle "$source"
if [ $? -eq 0 ]
then
echo " Pass"
let "pass++"
else
echo " Fail"
let "fail++"
fi
done
done
$(deactivate && rm -rf mybenjienv/)
if [ $fail -eq 0 ]
then
echo "All checks passed for $pass source files"
else
let total=$pass+$fail
echo "Linter fail, $fail source files out of $total source files need to be fixed"
exit 1
fi