Skip to content

Commit 8b98196

Browse files
committed
verbose
1 parent b4eaf3e commit 8b98196

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/code_checks.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
6262

6363
# pandas/_libs/src is C code, so no need to search there.
6464
MSG='Linting .py code' ; echo $MSG
65-
flake8 --format="$FLAKE8_FORMAT" .
65+
flake8 -v --format="$FLAKE8_FORMAT" .
6666
RET=$(($RET + $?)) ; echo $MSG "DONE"
6767

6868
MSG='Linting .pyx code' ; echo $MSG
69-
flake8 --format="$FLAKE8_FORMAT" pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126,E265,E305,E301,E127,E261,E271,E129,W291,E222,E241,E123,F403,C400,C401,C402,C403,C404,C405,C406,C407,C408,C409,C410,C411
69+
flake8 -v --format="$FLAKE8_FORMAT" pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126,E265,E305,E301,E127,E261,E271,E129,W291,E222,E241,E123,F403,C400,C401,C402,C403,C404,C405,C406,C407,C408,C409,C410,C411
7070
RET=$(($RET + $?)) ; echo $MSG "DONE"
7171

7272
MSG='Linting .pxd and .pxi.in' ; echo $MSG
73-
flake8 --format="$FLAKE8_FORMAT" pandas/_libs --filename=*.pxi.in,*.pxd --select=E501,E302,E203,E111,E114,E221,E303,E231,E126,F403
73+
flake8 -v --format="$FLAKE8_FORMAT" pandas/_libs --filename=*.pxi.in,*.pxd --select=E501,E302,E203,E111,E114,E221,E303,E231,E126,F403
7474
RET=$(($RET + $?)) ; echo $MSG "DONE"
7575

7676
echo "flake8-rst --version"

0 commit comments

Comments
 (0)